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