git: 9front

ref: 6bda784cb6a0a933a3c3bde7e6b6d60d221d88f2
dir: /sys/src/ape/lib/ap/stdio/putchar.c/

View raw version
/*
 * pANS stdio -- getchar
 */
#include "iolib.h"
#undef putchar
int putchar(int c){
	return fputc(c, stdout);
}