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