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