gcc/libio/stdio/getchar.c

11 lines
102 B
C
Raw Normal View History

1997-08-22 00:57:35 +02:00
#include "libioP.h"
#include "stdio.h"
#undef getchar
int
getchar ()
{
return _IO_getc (stdin);
}