ack/lang/cem/libcc.ansi/stdio/fgetc.c

13 lines
150 B
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* fgetc - get an unsigned character and return it as an int
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-05-30 13:34:25 +00:00
#include <stdio.h>
int
fgetc(FILE *stream)
{
return getc(stream);
}