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