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

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