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