xref: /csrg-svn/lib/libc/stdio/fgetc.c (revision 61180)
146071Sbostic /*-
2*61180Sbostic  * Copyright (c) 1990, 1993
3*61180Sbostic  *	The Regents of the University of California.  All rights reserved.
446071Sbostic  *
546071Sbostic  * This code is derived from software contributed to Berkeley by
646071Sbostic  * Chris Torek.
746071Sbostic  *
846071Sbostic  * %sccs.include.redist.c%
946071Sbostic  */
1046071Sbostic 
1126643Sdonn #if defined(LIBC_SCCS) && !defined(lint)
12*61180Sbostic static char sccsid[] = "@(#)fgetc.c	8.1 (Berkeley) 06/04/93";
1346071Sbostic #endif /* LIBC_SCCS and not lint */
1422130Smckusick 
152000Swnj #include <stdio.h>
162000Swnj 
fgetc(fp)172000Swnj fgetc(fp)
1846071Sbostic 	FILE *fp;
192000Swnj {
2046071Sbostic 	return (__sgetc(fp));
212000Swnj }
22