shithub: scc

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

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

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