git: 9front

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