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