shithub: scc

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

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

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