aboutsummaryrefslogtreecommitdiff
path: root/reboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'reboot.c')
-rw-r--r--reboot.c4
1 files changed, 4 insertions, 0 deletions
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;
}