Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
142 B

  1. static int restart = 0;
  2. void
  3. sighup(int unused)
  4. {
  5. Arg a = {.i = 1};
  6. quit(&a);
  7. }
  8. void
  9. sigterm(int unused)
  10. {
  11. Arg a = {.i = 0};
  12. quit(&a);
  13. }