shithub: scc

ref: 4691d9aba548d25e59960b02334f98991a534a4c
dir: /src/libc/stdio/getchar.c/

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

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