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