git: 9front

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