git: 9front

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