diff options
author | b-r-o-c-k <brockmammen@gmail.com> | 2018-02-28 19:14:27 -0600 |
---|---|---|
committer | b-r-o-c-k <brockmammen@gmail.com> | 2018-02-28 19:37:58 -0600 |
commit | d520e2590af5e8d22416e6acbcd161ba1601a532 (patch) | |
tree | 098e0ac5037ef9d1f69d46feb6eecd5c7e4d0385 | |
parent | 69da692b0adbd9168d002eaffb02bd59c64044b2 (diff) | |
download | rneovim-d520e2590af5e8d22416e6acbcd161ba1601a532.tar.gz rneovim-d520e2590af5e8d22416e6acbcd161ba1601a532.tar.bz2 rneovim-d520e2590af5e8d22416e6acbcd161ba1601a532.zip |
build/msvc: Add mode_t typedef to win_defs.h
-rw-r--r-- | src/nvim/os/win_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os/win_defs.h b/src/nvim/os/win_defs.h index 8fd2e51f8b..48607845cc 100644 --- a/src/nvim/os/win_defs.h +++ b/src/nvim/os/win_defs.h @@ -60,6 +60,7 @@ #ifdef _MSC_VER typedef SSIZE_T ssize_t; +typedef int mode_t; #endif #ifndef SSIZE_MAX |