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