aboutsummaryrefslogtreecommitdiffstats
path: root/src/quit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quit.h')
-rw-r--r--src/quit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quit.h b/src/quit.h
index d42c524..cbae77c 100644
--- a/src/quit.h
+++ b/src/quit.h
@@ -25,14 +25,14 @@
*
* @param signal The signal the program received
*/
-void timeout_quit(int signal);
+void timeout_quit(int signal) __attribute__((noreturn));
/**
* Quit function for user aborts
*
* @param signal The signal the program received
*/
-void user_quit(int signal);
+void user_quit(int signal) __attribute__((noreturn));
#endif