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