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