shithub: riscv

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