diff options
Diffstat (limited to 'libc-top-half/musl/src/stdio/getchar.c')
-rw-r--r-- | libc-top-half/musl/src/stdio/getchar.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdio/getchar.c b/libc-top-half/musl/src/stdio/getchar.c new file mode 100644 index 0000000..df395ca --- /dev/null +++ b/libc-top-half/musl/src/stdio/getchar.c @@ -0,0 +1,7 @@ +#include <stdio.h> +#include "getc.h" + +int getchar(void) +{ + return do_getc(stdin); +} |