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