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