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