/* * getchar.c - read a character from the standard input stream */ /* $Header$ */ #include #undef getchar int getchar(void) { return getc(stdin); }