shithub: scc

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

View raw version
#include <stdio.h>

#undef getchar

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