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