0b44a031
1 2 3 4 5 6 7 8 9 10
#include "stdio_impl.h" int fputc(int c, FILE *f) { FLOCK(f); if (c != f->lbf && f->wpos + 1 < f->wend) *f->wpos++ = c; else c = __overflow(f, c); FUNLOCK(f); return c; }