aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Shipp <nick@shipp.ninja>2017-04-30 21:58:21 -0400
committerNick Shipp <nick@shipp.ninja>2017-04-30 21:58:21 -0400
commit4300ce841cf0fe3379b538a1a32316f55b148aae (patch)
tree7bee9d97b383f6bad509426ea9812015098543ee
parent7cf367f120d6c6a2e7d918f177d823691d061ca7 (diff)
Follow the insanity in poweroff and reboot
-rw-r--r--poweroff.c4
-rw-r--r--reboot.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/poweroff.c b/poweroff.c
index 5379c4f..4f51456 100644
--- a/poweroff.c
+++ b/poweroff.c
@@ -6,10 +6,14 @@
int
main(void)
{
+#ifdef SANE
if (kill(1, SIGUSR1) == -1) {
perror("kill");
return errno;
}
+#else
+ kill(1, SIGUSR1);
+#endif
return 0;
}
diff --git a/reboot.c b/reboot.c
index d40e5c2..83141c3 100644
--- a/reboot.c
+++ b/reboot.c
@@ -6,10 +6,14 @@
int
main(void)
{
+#ifdef SANE
if (kill(1, SIGINT) == -1) {
perror("kill");
return errno;
}
+#else
+ kill(1, SIGINT);
+#endif
return 0;
}