shithub: scc

ref: 044ed044112af8996f280664833682a4f437016f
dir: /src/libc/stdio/getchar.c/

View raw version
#include <stdio.h>

#undef getchar

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