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