diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2016-04-29 09:43:14 -0400 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2016-04-29 09:43:14 -0400 |
| commit | 126e4758076aec243a05c5e838c2a7f5197ad678 (patch) | |
| tree | 307810dbcc169aa89f58bc9c045b7b083ed301e0 | |
| parent | a1d326a251dab756b2c3b6d98bca622da5a76c49 (diff) | |
| parent | d0a3f8b73fa6663b0424cbd5bf8f42a71941b94d (diff) | |
| download | rneovim-126e4758076aec243a05c5e838c2a7f5197ad678.tar.gz rneovim-126e4758076aec243a05c5e838c2a7f5197ad678.tar.bz2 rneovim-126e4758076aec243a05c5e838c2a7f5197ad678.zip | |
Merge pull request #4674 from equalsraf/tb-include-fcntl
Add missing include fcntl.h
| -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" |