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