aboutsummaryrefslogtreecommitdiff
path: root/include/busybox.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/busybox.h')
-rw-r--r--include/busybox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/busybox.h b/include/busybox.h
index 52720244b..cad45ac00 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -64,9 +64,9 @@ void lbb_prepare(const char *applet
) MAIN_EXTERNALLY_VISIBLE;
#if ENABLE_BUILD_LIBBUSYBOX
#if ENABLE_FEATURE_SHARED_BUSYBOX
-int lbb_main(int argc, char **argv) EXTERNALLY_VISIBLE;
+int lbb_main(char **argv) EXTERNALLY_VISIBLE;
#else
-int lbb_main(int argc, char **argv);
+int lbb_main(char **argv);
#endif
#endif