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