shithub: front

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