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