aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/helper/compiler.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/helper/compiler.h b/src/helper/compiler.h
index 33a075d..312d261 100644
--- a/src/helper/compiler.h
+++ b/src/helper/compiler.h
@@ -36,9 +36,11 @@
* clang for Apple defines
* #define __nonnull _Nonnull
* that is a per argument attribute, incompatible with the gcc per function attribute __nonnull__.
- * Undefine it to keep compatibility among compilers.
+ * gcc for Apple includes sys/cdefs.h from MacOSX.sdk that defines
+ * #define __nonnull
+ * In both cases, undefine __nonnull to keep compatibility among compilers and platforms.
*/
-#if defined(__clang__) && defined(__APPLE__)
+#if defined(__APPLE__)
# undef __nonnull
#endif
#ifndef __nonnull