git: 9front

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