shithub: scc

ref: 92778381c37454ad7857d0e7ee6608920544d7d2
dir: /src/libc/stdio/getchar.c/

View raw version
#include <stdio.h>

#undef getchar

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