git: 9front

ref: 93b906ab3b2a9ae4ed3b65430bd616e314f1c7e3
dir: /sys/src/ape/lib/ap/stdio/getchar.c/

View raw version
/*
 * pANS stdio -- getchar
 */
#include "iolib.h"
#undef getchar
int getchar(void){
	return fgetc(stdin);
}