git: 9front

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