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