ack/lang/cem/libcc.ansi/stdio/fgetc.c
2018-06-21 22:33:47 +02:00

12 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);
}