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

13 lines
149 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>
int
1989-12-18 15:04:14 +00:00
(getchar)(void)
1989-05-30 13:34:25 +00:00
{
1989-12-18 15:04:14 +00:00
return getchar();
1989-05-30 13:34:25 +00:00
}