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