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