Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
f811e07b072600a3784a92e5a1dc8a93dac477eb
/
.
/
reboot.c
blob: 0388fbce7656a75402b771a7a67b15dd10e93eb2 [
file
] [
log
] [
blame
]
#include
"internal.h"
#include
<signal.h>
const
char
reboot_usage
[]
=
"reboot\n"
"\n\t"
"\treboot the system.\n"
;
extern
int
reboot_main
(
struct
FileInfo
*
i
,
int
argc
,
char
*
*
argv
)
{
return
kill
(
1
,
SIGUSR2
);
}