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