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