minix/lib/stdio/getchar.c
2005-04-21 14:53:53 +00:00

13 lines
149 B
C
Executable file

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