git: 9front

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