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