diff options
Diffstat (limited to 'libio/stdio/getchar.c')
-rw-r--r-- | libio/stdio/getchar.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libio/stdio/getchar.c b/libio/stdio/getchar.c new file mode 100644 index 00000000000..88610dc49e2 --- /dev/null +++ b/libio/stdio/getchar.c @@ -0,0 +1,10 @@ +#include "libioP.h" +#include "stdio.h" + +#undef getchar + +int +getchar () +{ + return _IO_getc (stdin); +} |