We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 714d825 commit 7a0adb4Copy full SHA for 7a0adb4
Zend/zend_portability.h
@@ -239,11 +239,13 @@ char *alloca();
239
# define ZEND_FASTCALL
240
#endif
241
242
-#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3004
243
-#else
244
-# define __restrict__
+#ifndef restrict
+# if defined(__GNUC__) && ZEND_GCC_VERSION >= 3004
+# else
245
+# define __restrict__
246
+# endif
247
+# define restrict __restrict__
248
-#define restrict __restrict__
249
250
#if (defined(__GNUC__) && __GNUC__ >= 3 && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(__hpux) && !defined(_AIX) && !defined(__osf__)) || __has_attribute(noreturn)
251
# define HAVE_NORETURN
0 commit comments