ref: eccc5be2a0755da4d604a9e3079426253ee7a980 dir: /lib/c/src/putc.c/
#include <stdio.h> #undef putc int putc(int ch, FILE *fp) { return (fp->wp >= fp->rp) ? __putc(c,fp) : *fp->wp++ = c; }