xref: /plan9-contrib/sys/src/ape/lib/ap/stdio/getchar.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 /*
2  * pANS stdio -- getchar
3  */
4 #include "iolib.h"
5 #undef getchar
6 int getchar(void){
7 	return fgetc(stdin);
8 }
9