xref: /csrg-svn/lib/libc/stdio/fgetc.c (revision 22130)
1*22130Smckusick #ifndef lint
2*22130Smckusick static char sccsid[] = "@(#)fgetc.c	5.1 (Berkeley) 06/05/85";
3*22130Smckusick #endif not lint
4*22130Smckusick 
52000Swnj #include <stdio.h>
62000Swnj 
72000Swnj fgetc(fp)
82000Swnj FILE *fp;
92000Swnj {
102000Swnj 	return(getc(fp));
112000Swnj }
12