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