git: 9front

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