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