16 lines
176 B
C
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
|