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