shithub: scc

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

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

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