shithub: scc

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

View raw version
#include <stdio.h>

#undef getchar

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