diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-18 21:31:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-18 21:31:00 +0000 |
commit | 703c62da63aa31d665a8215f373b26e4b54f1bf4 (patch) | |
tree | 44f14eeafa69317a3a053760492ca5f8bf80645e /init | |
parent | 8759006b55c617811a207cc4e99792996c8b97fb (diff) | |
download | busybox-w32-703c62da63aa31d665a8215f373b26e4b54f1bf4.tar.gz busybox-w32-703c62da63aa31d665a8215f373b26e4b54f1bf4.tar.bz2 busybox-w32-703c62da63aa31d665a8215f373b26e4b54f1bf4.zip |
More stuff
Diffstat (limited to 'init')
-rw-r--r-- | init/halt.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/init/halt.c b/init/halt.c index 7f3ccf966..0dbdc55f1 100644 --- a/init/halt.c +++ b/init/halt.c | |||
@@ -1,12 +1,9 @@ | |||
1 | #include "internal.h" | 1 | #include "internal.h" |
2 | #include <signal.h> | 2 | #include <signal.h> |
3 | 3 | ||
4 | const char halt_usage[] = "halt\n" | ||
5 | "\n\t" | ||
6 | "\thalt the system.\n"; | ||
7 | |||
8 | extern int | 4 | extern int |
9 | halt_main(struct FileInfo * i, int argc, char * * argv) | 5 | halt_main(int argc, char ** argv) |
10 | { | 6 | { |
11 | return kill(1, SIGUSR1); | 7 | exit( kill(1, SIGUSR1)); |
12 | } | 8 | } |
9 | |||