diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-08-09 22:49:15 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-08-09 22:49:15 +0200 |
commit | b347df91317ca05910e930c94fdba30baf9e2de8 (patch) | |
tree | d7d035a1708ed90f2103bbe9c8e92d52ff4a1d2f /shell/hush.c | |
parent | a6367f9faec0f8736f6ff92fbda5c19d4cbc384e (diff) |
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/hush.c b/shell/hush.c index 6b3027771..e4138adf7 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -5519,12 +5519,6 @@ static char **expand_assignments(char **argv, int count) } -#if BB_MMU -/* never called */ -void re_execute_shell(char ***to_free, const char *s, - char *g_argv0, char **g_argv, - char **builtin_argv) NORETURN; - static void switch_off_special_sigs(unsigned mask) { unsigned sig = 0; @@ -5544,6 +5538,12 @@ static void switch_off_special_sigs(unsigned mask) } } +#if BB_MMU +/* never called */ +void re_execute_shell(char ***to_free, const char *s, + char *g_argv0, char **g_argv, + char **builtin_argv) NORETURN; + static void reset_traps_to_defaults(void) { /* This function is always called in a child shell |