shithub: front

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