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