summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/stdio/getchar.c
blob: f42c119c62f9d40acdc12acaf636d8c2c7a95026 (plain)
1
2
3
4
5
6
7
8
/*
 * pANS stdio -- getchar
 */
#include "iolib.h"
#undef getchar
int getchar(void){
	return fgetc(stdin);
}