aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.c
diff options
context:
space:
mode:
authorMichael Reed <Pyrohh@users.noreply.github.com>2016-01-17 03:06:26 -0500
committerMichael Reed <Pyrohh@users.noreply.github.com>2016-01-17 03:06:26 -0500
commit55a345c3e750dc4e4e8fd44d7f836e67a35524a6 (patch)
treef5e392e2ac0e8823fec1f4a7bd0625748cded3f5 /src/nvim/fileio.c
parenta3a7afded6472b87b5f58ac04f3a75f84ffa9bd7 (diff)
parent4f18e0f678d117d48d57be286ccc93c50109edcf (diff)
downloadrneovim-55a345c3e750dc4e4e8fd44d7f836e67a35524a6.tar.gz
rneovim-55a345c3e750dc4e4e8fd44d7f836e67a35524a6.tar.bz2
rneovim-55a345c3e750dc4e4e8fd44d7f836e67a35524a6.zip
Merge pull request #4027 from sethjackson/fcntl
[RFC] Windows: Include <fcntl.h> for file constants
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r--src/nvim/fileio.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c
index 9069a46151..97360d1881 100644
--- a/src/nvim/fileio.c
+++ b/src/nvim/fileio.c
@@ -7,6 +7,7 @@
#include <stdbool.h>
#include <string.h>
#include <inttypes.h>
+#include <fcntl.h>
#include "nvim/vim.h"
#include "nvim/ascii.h"