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