minix/lib/stdio/fgetc.c

13 lines
154 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
* fgetc - get an unsigned character and return it as an int
*/
/* $Header$ */
#include <stdio.h>
int
fgetc(FILE *stream)
{
return getc(stream);
}