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