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