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