aboutsummaryrefslogtreecommitdiff
path: root/halt.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-18 21:31:00 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-18 21:31:00 +0000
commit703c62da63aa31d665a8215f373b26e4b54f1bf4 (patch)
tree44f14eeafa69317a3a053760492ca5f8bf80645e /halt.c
parent8759006b55c617811a207cc4e99792996c8b97fb (diff)
downloadbusybox-703c62da63aa31d665a8215f373b26e4b54f1bf4.tar.gz
More stuff
Diffstat (limited to 'halt.c')
-rw-r--r--halt.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/halt.c b/halt.c
index 7f3ccf966..0dbdc55f1 100644
--- a/halt.c
+++ b/halt.c
@@ -1,12 +1,9 @@
#include "internal.h"
#include <signal.h>
-const char halt_usage[] = "halt\n"
-"\n\t"
-"\thalt the system.\n";
-
extern int
-halt_main(struct FileInfo * i, int argc, char * * argv)
+halt_main(int argc, char ** argv)
{
- return kill(1, SIGUSR1);
+ exit( kill(1, SIGUSR1));
}
+