git: 9front

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