git: 9front

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