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