git: 9front

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