mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
17 lines
144 B
C
17 lines
144 B
C
|
static int restart = 0;
|
||
|
|
||
|
void
|
||
|
sighup(int unused)
|
||
|
{
|
||
|
Arg a = {.i = 1};
|
||
|
quit(&a);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
sigterm(int unused)
|
||
|
{
|
||
|
Arg a = {.i = 0};
|
||
|
quit(&a);
|
||
|
}
|
||
|
|