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