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