getchar.c (79B)
1 2 #include <stdio.h> 3 #undef getchar 4 5 int 6 getchar(void) 7 { 8 return getc(stdin); 9 }