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