From 6ef8f9eacdf9185d9bd03613c0a0de40ea5e3f07 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 2 Mar 2019 07:15:28 +0100 Subject: patch 8.1.0987: unnecessary condition in #ifdef Problem: Unnecessary condition in #ifdef. Solution: Remove using CYGWIN32. (Ken Takata) --- src/os_unix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os_unix.h') diff --git a/src/os_unix.h b/src/os_unix.h index 8919ff0fa..5df943c70 100644 --- a/src/os_unix.h +++ b/src/os_unix.h @@ -33,7 +33,7 @@ # include #endif -#if defined(__CYGWIN__) || defined(__CYGWIN32__) +#ifdef __CYGWIN__ # define WIN32UNIX /* Compiling for Win32 using Unix files. */ # define BINARY_FILE_IO -- cgit v1.2.1