minix/lib/stdio/fgetc.c
2009-11-09 10:26:00 +00:00

13 lines
154 B
C

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