git: 9front

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