aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-04-29 09:43:14 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-04-29 09:43:14 -0400
commit126e4758076aec243a05c5e838c2a7f5197ad678 (patch)
tree307810dbcc169aa89f58bc9c045b7b083ed301e0 /src
parenta1d326a251dab756b2c3b6d98bca622da5a76c49 (diff)
parentd0a3f8b73fa6663b0424cbd5bf8f42a71941b94d (diff)
downloadrneovim-126e4758076aec243a05c5e838c2a7f5197ad678.tar.gz
rneovim-126e4758076aec243a05c5e838c2a7f5197ad678.tar.bz2
rneovim-126e4758076aec243a05c5e838c2a7f5197ad678.zip
Merge pull request #4674 from equalsraf/tb-include-fcntl
Add missing include fcntl.h
Diffstat (limited to 'src')
-rw-r--r--src/nvim/os/fs.c1
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"