ack/lang/cem/libcc.ansi/stdio/fgetc.c
1994-06-24 14:02:31 +00:00

13 lines
150 B
C

/*
* fgetc - get an unsigned character and return it as an int
*/
/* $Id$ */
#include <stdio.h>
int
fgetc(FILE *stream)
{
return getc(stream);
}