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