shithub: scc

ref: 2bee5e38261775e54c94508a6955f0bbfa28e51c
dir: /src/libc/stdio/getchar.c/

View raw version
#include <stdio.h>

#undef getchar

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