shithub: scc

ref: f436bcd36fc219ba013384977c368019c3bc91a7
dir: /src/libc/stdio/getchar.c/

View raw version
#include <stdio.h>
#undef getchar

int
getchar(void)
{
	return getc(stdin);
}