xref: /csrg-svn/lib/libc/stdio/fgetc.c (revision 26643)
1 #if defined(LIBC_SCCS) && !defined(lint)
2 static char sccsid[] = "@(#)fgetc.c	5.2 (Berkeley) 03/09/86";
3 #endif LIBC_SCCS and not lint
4 
5 #include <stdio.h>
6 
7 fgetc(fp)
8 FILE *fp;
9 {
10 	return(getc(fp));
11 }
12