diff options
author | Curtis McEnroe | 2018-11-30 19:45:34 -0500 |
---|---|---|
committer | Curtis McEnroe | 2018-11-30 19:45:34 -0500 |
commit | 414f928ac58278188638f8146a28a5747909de7b (patch) | |
tree | 8b5cf159990d66d7379f44a69e1f87526d1474bb /chat.h | |
parent | 9d769111aef9a3e6148bf8205c3556cc0c5a46a9 (diff) |
Handle signals consistently in the event loop
Diffstat (limited to 'chat.h')
-rw-r--r-- | chat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chat.h b/chat.h index f0d396d..e8f9378 100644 --- a/chat.h +++ b/chat.h @@ -20,6 +20,7 @@ #include <stdbool.h> #include <stdio.h> #include <stdlib.h> +#include <stdnoreturn.h> #include <time.h> #include <wchar.h> @@ -43,7 +44,7 @@ void selfJoin(const char *join); void eventWait(const char *argv[static 2]); void eventPipe(const char *argv[static 2]); -void eventLoop(void); +noreturn void eventLoop(void); struct Tag { size_t id; |