shithub: scc

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

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

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