From 1b0dcc02dd5a101d1a62f2111892a41621be96cf Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Tue, 5 Jul 2016 14:07:50 +0100 Subject: libbb: suppress warning about run_applet_and_exit When busybox is configured to contain a single applet an unnecessary declaration of run_applet_and_exit results in a warning. Move the declaration to avoid this. Reported-by: Lauri Kasanen Signed-off-by: Ron Yorston Signed-off-by: Denys Vlasenko --- libbb/appletlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libbb/appletlib.c b/libbb/appletlib.c index 480bf50fc..791b81c17 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -52,8 +52,6 @@ #include "usage_compressed.h" -static void run_applet_and_exit(const char *name, char **argv) NORETURN; - #if ENABLE_SHOW_USAGE && !ENABLE_FEATURE_COMPRESS_USAGE static const char usage_messages[] ALIGN1 = UNPACKED_USAGE; #else @@ -711,6 +709,8 @@ static void install_links(const char *busybox UNUSED_PARAM, # endif # if ENABLE_BUSYBOX +static void run_applet_and_exit(const char *name, char **argv) NORETURN; + /* If we were called as "busybox..." */ static int busybox_main(char **argv) { -- cgit v1.2.3