git: 9front

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