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