Add missing include fcntl.h

In Windows, open() flags like O_RDONLY need fcntl.h.
This commit is contained in:
Rui Abreu Ferreira
2016-04-29 08:22:10 +01:00
parent a1d326a251
commit d0a3f8b73f

View File

@@ -2,6 +2,7 @@
#include <stdbool.h>
#include <assert.h>
#include <fcntl.h>
#include "nvim/os/os.h"
#include "nvim/os/os_defs.h"