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