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