xref: /original-bsd/lib/libc/stdio/fgetc.c (revision 5b10f61c)
1 #ifndef lint
2 static char sccsid[] = "@(#)fgetc.c	5.1 (Berkeley) 06/05/85";
3 #endif not lint
4 
5 #include <stdio.h>
6 
7 fgetc(fp)
8 FILE *fp;
9 {
10 	return(getc(fp));
11 }
12