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