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