aboutsummaryrefslogtreecommitdiff
path: root/src/common/include/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/include/debug.h')
-rw-r--r--src/common/include/debug.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/common/include/debug.h b/src/common/include/debug.h
index a4b8b6f..285343c 100644
--- a/src/common/include/debug.h
+++ b/src/common/include/debug.h
@@ -3,8 +3,12 @@
#include <stddef.h>
#include <stdint.h>
-void panic(const char* message, const char* file, int line);
-void panic_assert(const char* assertion, const char* file, int line);
+void panic(const char* message, const char* file, int line)
+__attribute__((__noreturn__));
+
+void panic_assert(const char* assertion, const char* file, int line)
+__attribute__((__noreturn__));
+
#define PANIC(s) panic(s, __FILE__, __LINE__);
#define ASSERT(s) { if (!(s)) panic_assert(#s, __FILE__, __LINE__); }