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