ack/lang/cem/libcc.ansi/sys/stdio/getc.c
2018-06-23 18:54:40 +02:00

16 lines
160 B
C

/*
* getc.c - read an unsigned character
*/
/* $Id$ */
#include <stdio.h>
#if ACKCONF_WANT_STDIO
int(getc)(FILE* stream)
{
return getc(stream);
}
#endif