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