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