shithub: scc

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

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

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