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