comparison src/os_unix.h @ 15963:2d8fa45b341d v8.1.0987

patch 8.1.0987: unnecessary condition in #ifdef commit https://github.com/vim/vim/commit/6ef8f9eacdf9185d9bd03613c0a0de40ea5e3f07 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 2 07:15:28 2019 +0100 patch 8.1.0987: unnecessary condition in #ifdef Problem: Unnecessary condition in #ifdef. Solution: Remove using CYGWIN32. (Ken Takata)
author Bram Moolenaar <Bram@vim.org>
date Sat, 02 Mar 2019 07:30:07 +0100
parents 54d2905bd5ab
children 8f4cc259ed7a
comparison
equal deleted inserted replaced
15962:e29f75e1ec72 15963:2d8fa45b341d
31 31
32 #ifdef HAVE_STDLIB_H 32 #ifdef HAVE_STDLIB_H
33 # include <stdlib.h> 33 # include <stdlib.h>
34 #endif 34 #endif
35 35
36 #if defined(__CYGWIN__) || defined(__CYGWIN32__) 36 #ifdef __CYGWIN__
37 # define WIN32UNIX /* Compiling for Win32 using Unix files. */ 37 # define WIN32UNIX /* Compiling for Win32 using Unix files. */
38 # define BINARY_FILE_IO 38 # define BINARY_FILE_IO
39 39
40 # define CASE_INSENSITIVE_FILENAME 40 # define CASE_INSENSITIVE_FILENAME
41 # define USE_FNAME_CASE /* Fix filename case differences. */ 41 # define USE_FNAME_CASE /* Fix filename case differences. */