git: 9front

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