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