aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
Diffstat (limited to 'init')
-rw-r--r--init/reboot.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/init/reboot.c b/init/reboot.c
index 0388fbce7..f915205ea 100644
--- a/init/reboot.c
+++ b/init/reboot.c
@@ -1,12 +1,8 @@
1#include "internal.h" 1#include "internal.h"
2#include <signal.h> 2#include <signal.h>
3 3
4const char reboot_usage[] = "reboot\n"
5"\n\t"
6"\treboot the system.\n";
7
8extern int 4extern int
9reboot_main(struct FileInfo * i, int argc, char * * argv) 5reboot_main(int argc, char ** argv)
10{ 6{
11 return kill(1, SIGUSR2); 7 exit( kill(1, SIGUSR2));
12} 8}