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