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