shithub: scc

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

View raw version
#include <stdio.h>

#undef getchar

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