summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib.h b/lib.h
index f23eb36f..e74ed15f 100644
--- a/lib.h
+++ b/lib.h
@@ -57,10 +57,10 @@ typedef double_uintptr_t dbl_ucnum;
#define PTR_BIT (SIZEOF_PTR * CHAR_BIT)
#ifdef __GNUC__
-#define noreturn __attribute__((noreturn))
+#define NORETURN __attribute__((noreturn))
#define NOINLINE __attribute__((noinline))
#else
-#define noreturn
+#define NORETURN
#define NOINLINE
#endif