summaryrefslogtreecommitdiff
path: root/halt.c
diff options
context:
space:
mode:
Diffstat (limited to 'halt.c')
-rw-r--r--halt.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/halt.c b/halt.c
new file mode 100644
index 0000000..7f3ccf9
--- /dev/null
+++ b/halt.c
@@ -0,0 +1,12 @@
+#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)
+{
+ return kill(1, SIGUSR1);
+}