fix %n specifier, again. this time it was storing the wrong value.
[musl] / src / stdio / getc.c
1 #include "stdio_impl.h"
2
3 int getc(FILE *f)
4 {
5         return fgetc(f);
6 }