mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-28 06:00:36 +00:00
remove stdio from allnoconfig build
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
04cecd5e61
commit
43b094b584
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user