git: 9front

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