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