aboutsummaryrefslogtreecommitdiffstats
path: root/src/quit.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-04-24 06:21:57 +0200
committerMattias Andrée <maandree@operamail.com>2014-04-24 06:21:57 +0200
commite9803436f78b20cb4f3ab7646585f20f63a7078d (patch)
tree792ed900fd32191b302c079cd8843aac99e168ef /src/quit.h
parentfix warning (diff)
downloadcerberus-e9803436f78b20cb4f3ab7646585f20f63a7078d.tar.gz
cerberus-e9803436f78b20cb4f3ab7646585f20f63a7078d.tar.bz2
cerberus-e9803436f78b20cb4f3ab7646585f20f63a7078d.tar.xz
enable more warnings
Signed-off-by: Mattias Andrée <maandree@operamail.com>
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