ref: 9e8fc02528d531c922e75395b5a7037904445d4b 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); }