shithub: scc

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

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

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