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