ack/lang/cem/libcc/stdio/getchar.c
1994-06-24 14:02:31 +00:00

10 lines
82 B
C

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