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