fix printf %n specifier - missing breaks had it clobbering memory
[musl] / src / stdio / getc.c
1 #include "stdio_impl.h"
2
3 int getc(FILE *f)
4 {
5         return fgetc(f);
6 }