From fe8299e43471c0bb0ef6759d6ffba2fe74d8177e Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 22 Jun 2016 11:34:26 -0400 Subject: [PATCH] Fix: syscall-compat.h MacOSX support Signed-off-by: Mathieu Desnoyers --- urcu/syscall-compat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urcu/syscall-compat.h b/urcu/syscall-compat.h index d603db2..fa63a7b 100644 --- a/urcu/syscall-compat.h +++ b/urcu/syscall-compat.h @@ -32,8 +32,8 @@ #elif defined(__linux__) || defined(__GLIBC__) #include -#elif defined(__CYGWIN__) -/* Don't include anything on Cygwin. */ +#elif defined(__CYGWIN__) || defined(__APPLE__) +/* Don't include anything on Cygwin or MacOSX. */ #else #error "Add platform support to urcu/syscall-compat.h" -- 2.34.1