From 5e4d8998d80239836d4fbceb21d1bc52979e8dad Mon Sep 17 00:00:00 2001 From: Sebastien Boisvert Date: Wed, 1 Jun 2016 23:01:37 -0400 Subject: [PATCH] Port: fix compatibility header for Cygwin Signed-off-by: Sebastien Boisvert Signed-off-by: Mathieu Desnoyers --- urcu/syscall-compat.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/urcu/syscall-compat.h b/urcu/syscall-compat.h index 9b9afec..d603db2 100644 --- a/urcu/syscall-compat.h +++ b/urcu/syscall-compat.h @@ -31,6 +31,10 @@ #include #elif defined(__linux__) || defined(__GLIBC__) #include + +#elif defined(__CYGWIN__) +/* Don't include anything on Cygwin. */ + #else #error "Add platform support to urcu/syscall-compat.h" #endif -- 2.34.1