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