remove sample utf-8 code that's not part of the standard library
[musl] / src / stdio / getc.c
1 #include "stdio_impl.h"
2
3 int getc(FILE *f)
4 {
5         return fgetc(f);
6 }