git: 9front

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