ref: 336df4d4aed17394d5a5fc8ae1f1c24df4c1cf5e 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); }