diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/halt.c | 2 | ||||
-rw-r--r-- | init/init.c | 2 | ||||
-rw-r--r-- | init/mesg.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/init/halt.c b/init/halt.c index e21ad57cc..d9f8b1afc 100644 --- a/init/halt.c +++ b/init/halt.c | |||
@@ -10,7 +10,7 @@ | |||
10 | #include "libbb.h" | 10 | #include "libbb.h" |
11 | #include <sys/reboot.h> | 11 | #include <sys/reboot.h> |
12 | 12 | ||
13 | int halt_main(int argc, char **argv); | 13 | int halt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
14 | int halt_main(int argc, char **argv) | 14 | int halt_main(int argc, char **argv) |
15 | { | 15 | { |
16 | static const int magic[] = { | 16 | static const int magic[] = { |
diff --git a/init/init.c b/init/init.c index 5e8401163..409e8c41f 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -882,7 +882,7 @@ static void reload_signal(int sig ATTRIBUTE_UNUSED) | |||
882 | } | 882 | } |
883 | #endif /* FEATURE_USE_INITTAB */ | 883 | #endif /* FEATURE_USE_INITTAB */ |
884 | 884 | ||
885 | int init_main(int argc, char **argv); | 885 | int init_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
886 | int init_main(int argc, char **argv) | 886 | int init_main(int argc, char **argv) |
887 | { | 887 | { |
888 | struct init_action *a; | 888 | struct init_action *a; |
diff --git a/init/mesg.c b/init/mesg.c index 1a576cb37..cfb517f60 100644 --- a/init/mesg.c +++ b/init/mesg.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #define S_IWGRP_OR_S_IWOTH (S_IWGRP | S_IWOTH) | 15 | #define S_IWGRP_OR_S_IWOTH (S_IWGRP | S_IWOTH) |
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | int mesg_main(int argc, char **argv); | 18 | int mesg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
19 | int mesg_main(int argc, char **argv) | 19 | int mesg_main(int argc, char **argv) |
20 | { | 20 | { |
21 | struct stat sb; | 21 | struct stat sb; |