blob: cf6410a887fbfdb88e45040f5500e26f4b173516 [file] [log] [blame]
#include "libioP.h"
#include "stdio.h"
int
fgetc(fp)
FILE *fp;
{
CHECK_FILE(fp, EOF);
return _IO_getc(fp);
}