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

16 lines
176 B
C

/*
* getchar.c - read a character from the standard input stream
*/
/* $Id$ */
#include <stdio.h>
#if ACKCONF_WANT_STDIO
int(getchar)(void)
{
return getchar();
}
#endif