diff options
Diffstat (limited to 'halt.c')
-rw-r--r-- | halt.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ | |||
1 | #include "internal.h" | ||
2 | #include <signal.h> | ||
3 | |||
4 | const char halt_usage[] = "halt\n" | ||
5 | "\n\t" | ||
6 | "\thalt the system.\n"; | ||
7 | |||
8 | extern int | ||
9 | halt_main(struct FileInfo * i, int argc, char * * argv) | ||
10 | { | ||
11 | return kill(1, SIGUSR1); | ||
12 | } | ||