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