aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCorinna Vinschen <vinschen@redhat.com>2016-01-16 19:30:48 +0100
committerRichard Levitte <levitte@openssl.org>2016-01-18 16:16:00 +0100
commit8d35ceb98f3dbd55cf55edc3d2a814d0dd6d520d (patch)
treeb434ee6f20661c4b02ed0760400fcd4dda70c3d5 /include
parent23d526eca9251618b3f0d81c4a2ad6d4f25d7563 (diff)
downloadopenssl-8d35ceb98f3dbd55cf55edc3d2a814d0dd6d520d.tar.gz
Use POSIX functions on Cygwin, not Win32 function
Signed-off-by: Corinna Vinschen <vinschen@redhat.com> Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/async.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/async.h b/include/openssl/async.h
index de5ef89644..d130a364a7 100644
--- a/include/openssl/async.h
+++ b/include/openssl/async.h
@@ -56,7 +56,7 @@
#include <stdlib.h>
-#if defined(_WIN32) || defined(__CYGWIN__)
+#if defined(_WIN32)
#include <windows.h>
#define OSSL_ASYNC_FD HANDLE
#else