/************************************************************* * File: lib/getchar.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ #include #undef getchar /************************************************************* * getchar() get char from stdin */ getchar() { return(getc(stdin)); }