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