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