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