shithub: plan9front

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