git: 9front

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