git: 9front

ref: 93b8cf39ac29e3cd6db8b74260ac0c1ebafa375d
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);
}