diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-15 21:56:54 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-15 21:56:54 +0100 |
commit | d807036d10615b960c814ef3890ecad335b57f56 (patch) | |
tree | f0c67f0c29bf707ec8a0f3bddcd346139b165674 /src/vim.h | |
parent | a971df849f92e32e18ce475fdb47ad9ea2aa47f3 (diff) | |
download | vim-git-d807036d10615b960c814ef3890ecad335b57f56.tar.gz |
patch 7.4.1324v7.4.1324
Problem: Channels with pipes don't work on MS-Windows.
Solution: Add pipe I/O support. (Yasuhiro Matsumoto)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1730,7 +1730,7 @@ typedef struct timeval proftime_T; typedef int proftime_T; /* dummy for function prototypes */ #endif -#ifdef WIN64 +#ifdef _WIN64 typedef __int64 sock_T; #else typedef int sock_T; |