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