shithub: scc

ref: 440e24ce81386865be595f5825bc7287d5063ccc
dir: /src/libc/stdio/getchar.c/

View raw version
#include <stdio.h>

#undef getchar

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