mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.4316: __CYGWIN32__ is not defined on 64 bit systems
Problem: __CYGWIN32__ is not defined on 64 bit systems. Solution: Update #ifdefs. (Ken Takata, closes #9709)
This commit is contained in:
@@ -1576,10 +1576,10 @@ typedef UINT32_TYPEDEF UINT32_T;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* EMX doesn't have a global way of making open() use binary I/O.
|
||||
* Cygwin doesn't have a global way of making open() use binary I/O.
|
||||
* Use O_BINARY for all open() calls.
|
||||
*/
|
||||
#if defined(__CYGWIN32__)
|
||||
#ifdef __CYGWIN__
|
||||
# define O_EXTRA O_BINARY
|
||||
#else
|
||||
# define O_EXTRA 0
|
||||
|
Reference in New Issue
Block a user