git: 9front

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