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