git: 9front

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