1 /* 2 * pANS stdio -- fgetc 3 */ 4 #include "iolib.h" fgetc(FILE * f)5 int fgetc(FILE *f){ 6 return getc(f); 7 } 8