diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-18 20:16:11 -0700 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-18 20:16:11 -0700 |
commit | 43b094b584d8e24406bb819e056c9ce618167ee8 (patch) | |
tree | 2063b3666e44b8c7db7a369cf12342936af8237b | |
parent | 04cecd5e614f89b9e65a4d8141ec75053f563ad9 (diff) | |
download | busybox-w32-43b094b584d8e24406bb819e056c9ce618167ee8.tar.gz busybox-w32-43b094b584d8e24406bb819e056c9ce618167ee8.tar.bz2 busybox-w32-43b094b584d8e24406bb819e056c9ce618167ee8.zip |
remove stdio from allnoconfig build
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/appletlib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index 2d52c3db9..7a5e7ae4d 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -105,7 +105,9 @@ static const char *unpack_usage_messages(void) | |||
105 | 105 | ||
106 | static void full_write2_str(const char *str) | 106 | static void full_write2_str(const char *str) |
107 | { | 107 | { |
108 | xwrite_str(STDERR_FILENO, str); | 108 | // This uses stdio: |
109 | //xwrite_str(STDERR_FILENO, str); | ||
110 | write(STDERR_FILENO, str, strlen(str)); | ||
109 | } | 111 | } |
110 | 112 | ||
111 | void FAST_FUNC bb_show_usage(void) | 113 | void FAST_FUNC bb_show_usage(void) |