diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-13 16:54:38 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-13 16:54:38 -0800 |
commit | 2914deb17f3857bb02eeec87a58a3ed6d4a8853a (patch) | |
tree | 5425d058e199bade4f43cf0dc526a52f4b556b71 /system/lib/libc/musl/src/stdio/__overflow.c | |
parent | 7844db37f5b6dce1e7772f955ff606ef806ae032 (diff) | |
parent | ee4a2df911e834285aed9148eb4cab4546c8a063 (diff) |
Merge pull request #2004 from waywardmonkeys/updates
Updates
Diffstat (limited to 'system/lib/libc/musl/src/stdio/__overflow.c')
-rw-r--r-- | system/lib/libc/musl/src/stdio/__overflow.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/stdio/__overflow.c b/system/lib/libc/musl/src/stdio/__overflow.c new file mode 100644 index 00000000..3bb37923 --- /dev/null +++ b/system/lib/libc/musl/src/stdio/__overflow.c @@ -0,0 +1,10 @@ +#include "stdio_impl.h" + +int __overflow(FILE *f, int _c) +{ + unsigned char c = _c; + if (!f->wend && __towrite(f)) return EOF; + if (f->wpos < f->wend && c != f->lbf) return *f->wpos++ = c; + if (f->write(f, &c, 1)!=1) return EOF; + return c; +} |