shithub: scc

ref: 0227f08f277216ef979a859e1170aff185205abb
dir: /src/libc/stdio/getchar.c/

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

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