amiga-libnix3/stdio/getchar.c

9 lines
80 B
C

#include <stdio.h>
#undef getchar
int getchar(void)
{
return fgetc(stdin);
}