shithub: scc

ref: 297c3c7dfa958231abe140ee00d38b0e684ad48c
dir: /src/libc/stdio/getchar.c/

View raw version
#include <stdio.h>

#undef getchar

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