ircd_signal: a function that tailcalls a noreturn function should be marked noreturn

This commit is contained in:
Aaron Jones 2016-06-01 20:11:46 +00:00
parent df3db5d99b
commit 0b91afb2e1
No known key found for this signature in database
GPG Key ID: 6E854C0FAAD4CEA4
1 changed files with 3 additions and 0 deletions

View File

@ -57,6 +57,9 @@ sigchld_handler(int sig)
/*
* sigterm_handler - exit the server
*/
static void
sigterm_handler(int sig) __attribute__((noreturn));
static void
sigterm_handler(int sig)
{