shithub: scc

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

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

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