summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/getchar.c
blob: dad2263d7814ccf678cae87a894778ade47663d2 (plain)
1
2
3
4
#include <stdio.h>

// The getchar() function shall be equivalent to getc(stdin).
int getchar(void) { return fgetc(stdin); }