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