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