aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 6bf4d1d19..b3c77aa14 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -3925,3 +3925,13 @@ int hush_main(int argc, char **argv)
3925#endif 3925#endif
3926 hush_exit(opt ? opt : last_return_code); 3926 hush_exit(opt ? opt : last_return_code);
3927} 3927}
3928
3929
3930#if ENABLE_LASH
3931int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
3932int lash_main(int argc, char **argv)
3933{
3934 //bb_error_msg("lash is deprecated, please use hush instead");
3935 return hush_main(argc, argv);
3936}
3937#endif