git: 9front

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