shithub: scc

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

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

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