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