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