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