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