ref: 31a1d6cfc1123f07cef74ebbbcfdedd1f7c811e9 dir: /sys/src/ape/lib/ap/stdio/putchar.c/
/* * pANS stdio -- getchar */ #include "iolib.h" #undef putchar int putchar(int c){ return fputc(c, stdout); }