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