mirror of
https://git.busybox.net/busybox
synced 2026-02-15 22:16:09 +00:00
8 lines
120 B
C
8 lines
120 B
C
#include "internal.h"
|
|
#include <signal.h>
|
|
|
|
extern int
|
|
reboot_main(int argc, char ** argv)
|
|
{
|
|
exit( kill(1, SIGUSR2));
|
|
}
|