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