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