xref: /csrg-svn/lib/libc/stdio/fgetc.c (revision 46071)
1*46071Sbostic /*-
2*46071Sbostic  * Copyright (c) 1990 The Regents of the University of California.
3*46071Sbostic  * All rights reserved.
4*46071Sbostic  *
5*46071Sbostic  * This code is derived from software contributed to Berkeley by
6*46071Sbostic  * Chris Torek.
7*46071Sbostic  *
8*46071Sbostic  * %sccs.include.redist.c%
9*46071Sbostic  */
10*46071Sbostic 
1126643Sdonn #if defined(LIBC_SCCS) && !defined(lint)
12*46071Sbostic static char sccsid[] = "@(#)fgetc.c	5.3 (Berkeley) 01/20/91";
13*46071Sbostic #endif /* LIBC_SCCS and not lint */
1422130Smckusick 
152000Swnj #include <stdio.h>
162000Swnj 
172000Swnj fgetc(fp)
18*46071Sbostic 	FILE *fp;
192000Swnj {
20*46071Sbostic 	return (__sgetc(fp));
212000Swnj }
22