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