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