diff options
author | Rui Abreu Ferreira <raf-ep@gmx.com> | 2016-04-29 08:22:10 +0100 |
---|---|---|
committer | Rui Abreu Ferreira <raf-ep@gmx.com> | 2016-04-29 08:24:07 +0100 |
commit | d0a3f8b73fa6663b0424cbd5bf8f42a71941b94d (patch) | |
tree | 307810dbcc169aa89f58bc9c045b7b083ed301e0 /src | |
parent | a1d326a251dab756b2c3b6d98bca622da5a76c49 (diff) | |
download | rneovim-d0a3f8b73fa6663b0424cbd5bf8f42a71941b94d.tar.gz rneovim-d0a3f8b73fa6663b0424cbd5bf8f42a71941b94d.tar.bz2 rneovim-d0a3f8b73fa6663b0424cbd5bf8f42a71941b94d.zip |
Add missing include fcntl.h
In Windows, open() flags like O_RDONLY need fcntl.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/os/fs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index 3d5281a636..b6613caa45 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -2,6 +2,7 @@ #include <stdbool.h> #include <assert.h> +#include <fcntl.h> #include "nvim/os/os.h" #include "nvim/os/os_defs.h" |