shithub: scc

ref: 547c5c8703133571adfcba5da8adc5df512229fa
dir: /src/libc/stdio/getchar.c/

View raw version
#include <stdio.h>

#undef getchar

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