aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
-rw-r--r--shell/bbsh.c2
-rw-r--r--shell/hush.c2
-rw-r--r--shell/lash.c2
-rw-r--r--shell/msh.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/shell/ash.c b/shell/ash.c
index af96c4d1d..2b9a8ccb6 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -12739,7 +12739,7 @@ extern int etext();
12739 * exception occurs. When an exception occurs the variable "state" 12739 * exception occurs. When an exception occurs the variable "state"
12740 * is used to figure out how far we had gotten. 12740 * is used to figure out how far we had gotten.
12741 */ 12741 */
12742int ash_main(int argc, char **argv); 12742int ash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
12743int ash_main(int argc, char **argv) 12743int ash_main(int argc, char **argv)
12744{ 12744{
12745 char *shinit; 12745 char *shinit;
diff --git a/shell/bbsh.c b/shell/bbsh.c
index 09c4bd9a2..02e60508f 100644
--- a/shell/bbsh.c
+++ b/shell/bbsh.c
@@ -198,7 +198,7 @@ static void handle(char *command)
198 } 198 }
199} 199}
200 200
201int bbsh_main(int argc, char **argv); 201int bbsh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
202int bbsh_main(int argc, char **argv) 202int bbsh_main(int argc, char **argv)
203{ 203{
204 char *command=NULL; 204 char *command=NULL;
diff --git a/shell/hush.c b/shell/hush.c
index 1977da0f0..a76327721 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -3675,7 +3675,7 @@ static void setup_job_control(void)
3675} 3675}
3676#endif 3676#endif
3677 3677
3678int hush_main(int argc, char **argv); 3678int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
3679int hush_main(int argc, char **argv) 3679int hush_main(int argc, char **argv)
3680{ 3680{
3681 static const char version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR; 3681 static const char version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR;
diff --git a/shell/lash.c b/shell/lash.c
index b7a0a6a37..ce1ce7f6a 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -1491,7 +1491,7 @@ static inline void setup_job_control(void)
1491} 1491}
1492#endif 1492#endif
1493 1493
1494int lash_main(int argc_l, char **argv_l); 1494int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1495int lash_main(int argc_l, char **argv_l) 1495int lash_main(int argc_l, char **argv_l)
1496{ 1496{
1497 unsigned opt; 1497 unsigned opt;
diff --git a/shell/msh.c b/shell/msh.c
index 41fe1b6ba..7efd7f96e 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -5164,7 +5164,7 @@ static void freehere(int area)
5164 * shell 5164 * shell
5165 */ 5165 */
5166 5166
5167int msh_main(int argc, char **argv); 5167int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5168int msh_main(int argc, char **argv) 5168int msh_main(int argc, char **argv)
5169{ 5169{
5170 int f; 5170 int f;