ack/lang/cem/libcc/stdio/getchar.c
1987-03-31 10:45:53 +00:00

10 lines
86 B
C

/* $Header$ */
#include <stdio.h>
#undef getchar
getchar()
{
return getc(stdin);
}