git: 9front

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