git: 9front

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