minix/lib/stdio/fgetc.c
2005-04-21 14:53:53 +00:00

13 lines
154 B
C
Executable file

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