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