/* fgetc --- getc next character from stream */

fgetc(stream)
FILE *stream;
{
        return(getc(stream));
}
