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