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