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