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