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