From 43b094b584d8e24406bb819e056c9ce618167ee8 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 18 Apr 2010 20:16:11 -0700 Subject: remove stdio from allnoconfig build Signed-off-by: Denys Vlasenko --- libbb/appletlib.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libbb/appletlib.c') 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) static void full_write2_str(const char *str) { - xwrite_str(STDERR_FILENO, str); + // This uses stdio: + //xwrite_str(STDERR_FILENO, str); + write(STDERR_FILENO, str, strlen(str)); } void FAST_FUNC bb_show_usage(void) -- cgit v1.2.3