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