mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not useful
Problem: MS-Windows: Support for MSVC 2003 is not useful. Solution: Remove the exceptions for MSVC 2003. (Ken Takata, closes #9616)
This commit is contained in:
@@ -166,9 +166,9 @@
|
||||
# define mch_access(n, p) access((n), (p))
|
||||
# endif
|
||||
|
||||
// Use 64-bit fstat function if available.
|
||||
// Use 64-bit fstat function on MS-Windows.
|
||||
// NOTE: This condition is the same as for the stat_T type.
|
||||
# if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__)
|
||||
# ifdef MSWIN
|
||||
# define mch_fstat(n, p) _fstat64((n), (p))
|
||||
# else
|
||||
# define mch_fstat(n, p) fstat((n), (p))
|
||||
|
Reference in New Issue
Block a user