git: 9front

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