one too many levels of indirection (from ks@purdue)
[unix-history] / usr / src / lib / libc / stdio / fgetc.c
CommitLineData
b8f253e8
KM
1#ifndef lint
2static char sccsid[] = "@(#)fgetc.c 5.1 (Berkeley) %G%";
3#endif not lint
4
5603d2ea
BJ
5#include <stdio.h>
6
7fgetc(fp)
8FILE *fp;
9{
10 return(getc(fp));
11}