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