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