shithub: scc

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

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

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