1 /* 2 * pANS stdio -- getchar 3 */ 4 #include "iolib.h" 5 #undef putchar putchar(int c)6 int putchar(int c){ 7 return fputc(c, stdout); 8 } 9