shithub: scc

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

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

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