From 2f19dc69b175ee8ca91a9190ad3c6b2d5cc51bc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A8re=20J=C3=A9r=C3=B4me?= Date: Thu, 19 Nov 2015 09:55:23 +0100 Subject: [PATCH] Exclude socket.h on Windows (unless using Cygwin) --- include/chibi/sexp.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/chibi/sexp.h b/include/chibi/sexp.h index 55cdf8ce..d67b3ccd 100755 --- a/include/chibi/sexp.h +++ b/include/chibi/sexp.h @@ -65,7 +65,9 @@ typedef unsigned long size_t; #include #include #include +#if !(defined _WIN32) || defined(__CYGWIN__) #include +#endif #include #include #include