shithub: scc

ref: 83313d4505acea160478ef7bf2c60645e3cec526
dir: /src/libc/stdio/getchar.c/

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

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