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