match glibc/lsb cancellation abi on i386
[musl] / src / stdio / getc.c
1 #include "stdio_impl.h"
2
3 int getc(FILE *f)
4 {
5         return fgetc(f);
6 }