From 4b88f66bce3961c4a42f67b7d6ee7c2bba45e02d Mon Sep 17 00:00:00 2001 From: leitner Date: Fri, 22 Nov 2024 20:10:14 +0000 Subject: [PATCH] make sure restrict is there --- compiler.h | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler.h b/compiler.h index 915dcee..4361770 100644 --- a/compiler.h +++ b/compiler.h @@ -21,6 +21,7 @@ #if GCC_VERSION_ATLEAST(2,95) && !defined(__STRICT_ANSI__) #undef restrict +#define restrict __restrict #else #define restrict #endif