shithub: scc

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

View raw version

#include <stdio.h>
#undef getchar

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