shithub: scc

ref: c2fea0a96195c859978cbe53f367c00036f17af2
dir: /lib/c/getchar.c/

View raw version

#include <stdio.h>
#undef getchar

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