git: 9front

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