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