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