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