2.9BSD/usr/src/lib/c/stdio/fgetc.c

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

/*	@(#)fgetc.c	2.1	SCCS id keyword	*/
#include <stdio.h>

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