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