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