git: 9front

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