shithub: scc

ref: 6eaa4bfaae6f1836f8250830673a48a467e5d757
dir: /lib/c/getchar.c/

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

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