diff options
author | June McEnroe <june@causal.agency> | 2018-11-30 19:45:34 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-11-30 19:45:34 -0500 |
commit | 414f928ac58278188638f8146a28a5747909de7b (patch) | |
tree | 8b5cf159990d66d7379f44a69e1f87526d1474bb /chat.h | |
parent | Separate ircConnect and ircDisconnect (diff) | |
download | catgirl-414f928ac58278188638f8146a28a5747909de7b.tar.gz catgirl-414f928ac58278188638f8146a28a5747909de7b.zip |
Handle signals consistently in the event loop
Diffstat (limited to '')
-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; |