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