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