diff options
-rw-r--r-- | poweroff.c | 4 | ||||
-rw-r--r-- | reboot.c | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -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; } @@ -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; } |