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