fxlibc/src/stdio/getchar.c

8 lines
79 B
C

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