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