git: 9front

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