git: 9front

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