git: 9front

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