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