shithub: scc

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

View raw version
#include <stdio.h>

#undef getchar

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