git: 9front

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