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