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