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