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