shithub: scc

ref: 41390429613c2d8ffd2abae7e88d71ef9bfda362
dir: /src/libc/stdio/getchar.c/

View raw version
#include <stdio.h>

#undef getchar

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