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