fgetc.c (75B)
1 #include <stdio.h> 2 #undef fgetc 3 4 int 5 fgetc(FILE *fp) 6 { 7 return getc(fp); 8 }