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