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/undo.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/undo.c') diff --git a/src/nvim/undo.c b/src/nvim/undo.c index 69ac18ad54..6b60f95f22 100644 --- a/src/nvim/undo.c +++ b/src/nvim/undo.c @@ -77,6 +77,7 @@ #include #include #include +#include #include "nvim/vim.h" #include "nvim/ascii.h" -- cgit