git: 9front

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