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