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