aboutsummaryrefslogtreecommitdiff
path: root/halt.c
diff options
context:
space:
mode:
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 @@
1#include "internal.h" 1#include "internal.h"
2#include <signal.h> 2#include <signal.h>
3 3
4const char halt_usage[] = "halt\n"
5"\n\t"
6"\thalt the system.\n";
7
8extern int 4extern int
9halt_main(struct FileInfo * i, int argc, char * * argv) 5halt_main(int argc, char ** argv)
10{ 6{
11 return kill(1, SIGUSR1); 7 exit( kill(1, SIGUSR1));
12} 8}
9