PWB1/sys/source/s4/stdio/fgetc.c

Compare this file to the similar file:
Show the results in this format:

#include "stdio.h"

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