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