From d63cc7af22b91ae532c646003231ca6f855a5c94 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Sat, 10 Feb 2024 10:33:43 -0800 Subject: [PATCH] Define mmk_noreturn if __STDC_VERSION__ >= 201112L Signed-off-by: Christophe Bedard --- src/common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common.h b/src/common.h index f4a13ca..165f10e 100644 --- a/src/common.h +++ b/src/common.h @@ -28,6 +28,7 @@ # if __STDC_VERSION__ >= 201112L # include +# define mmk_noreturn _Noreturn # elif defined __GNUC__ # define mmk_noreturn __attribute__((noreturn)) # elif defined _MSC_VER