ref: 00f53b84b6eabbea690f3c6711b9ba1c7fe0bef1 dir: /sys/src/ape/lib/ap/stdio/putc.c/
/* * pANS stdio -- putc */ #include "iolib.h" #undef putc int putc(int c, FILE *f){ return fputc(c, f); }