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