ack/lang/cem/libcc.ansi/stdio/getchar.c

15 lines
165 B
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* getchar.c - read a character from the standard input stream
*/
/* $Header$ */
#include <stdio.h>
#undef getchar
int
getchar(void)
{
return getc(stdin);
}