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