shithub: scc

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

View raw version
#include <stdio.h>

#undef getchar

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