shithub: scc

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

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

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