shithub: front

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