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