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