shithub: scc

ref: 634508e69362fc2404b0134f237019f71cb00101
dir: /src/libc/stdio/getchar.c/

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

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