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