ref: 02b0b4dfb5a5bcc8971d5c15b2e9761b3fb59508 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); }