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