git: 9front

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