fxlibc/src/libc/stdio/getc.c

8 lines
74 B
C

#include <stdio.h>
#undef getc
int getc(FILE *fp)
{
return fgetc(fp);
}