shithub: scc

ref: 4f93908533138a0efbdffd880003438f98af736e
dir: /src/libc/stdio/getchar.c/

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

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