c10126581bf95d532e974fe30f6d2646a0ef8db6
[musl] / getchar.c
1 #include <stdio.h>
2
3 int getchar(void)
4 {
5         return fgetc(stdin);
6 }