diff options
author | Rob Landley <rob@landley.net> | 2012-07-23 23:38:34 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-07-23 23:38:34 -0500 |
commit | 07d79af7182c130858a84274718f9d0c84d15109 (patch) | |
tree | 1774612c377ec0411bff86aa0c0d65e666441914 /lib | |
parent | 8f90d3aa019ff89e19e0977c22be8b73c92109a3 (diff) | |
download | toybox-07d79af7182c130858a84274718f9d0c84d15109.tar.gz |
Workaround longstanding glibc/ld bug, ala http://sources.redhat.com/bugzilla/show_bug.cgi?id=3400, which prevents "./toybox | wc" from producing any output when toybox was statically linked.0.4.0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -160,7 +160,7 @@ void xputs(char *s) void xputc(char c) { - if (EOF == fputc(c, stdout)) perror_exit("write"); + if (EOF == fputc(c, stdout) || fflush(stdout)) perror_exit("write"); } void xflush(void) |