aboutsummaryrefslogtreecommitdiff
path: root/init/halt.c
diff options
context:
space:
mode:
Diffstat (limited to 'init/halt.c')
-rw-r--r--init/halt.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/init/halt.c b/init/halt.c
index 34479742e..38ca38222 100644
--- a/init/halt.c
+++ b/init/halt.c
@@ -15,9 +15,11 @@
int halt_main(int argc, char *argv[])
{
+ static const int magic[] = {RB_HALT_SYSTEM, RB_POWER_OFF, RB_AUTOBOOT};
+ static const int signals[] = {SIGUSR1, SIGUSR2, SIGTERM};
+
char *delay = "hpr";
- int which, flags, magic[] = {RB_HALT_SYSTEM, RB_POWER_OFF, RB_AUTOBOOT},
- signals[] = {SIGUSR1, SIGUSR2, SIGTERM}, rc = 1;
+ int which, flags, rc = 1;
/* Figure out which applet we're running */
for(which=0;delay[which]!=*bb_applet_name;which++);