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