git: 9front

ref: 3f5a4e9f7e3c0d1e7c43d2974049e2eb7bc7b5a0
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);
}