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