From 4f18e0f678d117d48d57be286ccc93c50109edcf Mon Sep 17 00:00:00 2001 From: Seth Jackson Date: Sun, 17 Jan 2016 00:19:56 -0500 Subject: Windows: Include for file constants. This header is required by POSIX for the constants (O_RDONLY, etc.) but we were only including it on Unix systems as a side effect of including . --- src/nvim/memfile.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/memfile.c') diff --git a/src/nvim/memfile.c b/src/nvim/memfile.c index 137c7c49d3..8cf5642a80 100644 --- a/src/nvim/memfile.c +++ b/src/nvim/memfile.c @@ -40,6 +40,7 @@ #include #include #include +#include #include "nvim/vim.h" #include "nvim/ascii.h" -- cgit