shithub: plan9front

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