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