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