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