mirror of
https://github.com/sheumann/hush.git
synced 2024-11-19 08:31:11 +00:00
9 lines
120 B
C
9 lines
120 B
C
#include "internal.h"
|
|
#include <signal.h>
|
|
|
|
extern int
|
|
reboot_main(int argc, char ** argv)
|
|
{
|
|
exit( kill(1, SIGUSR2));
|
|
}
|