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