Merge pull request #4019 from Pyrohh/fcntl

[RFC] test: sys/fcntl.h  ->  fcntl.h
This commit is contained in:
Michael Reed
2016-01-15 00:33:49 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#include <sys/fcntl.h>
#include <fcntl.h>
static const mode_t kO_RDONLY = O_RDONLY;
static const mode_t kO_WRONLY = O_WRONLY;

View File

@@ -22,7 +22,7 @@ cimport('./src/nvim/main.h')
cimport('./src/nvim/fileio.h')
local fs = cimport('./src/nvim/os/os.h')
cppimport('sys/stat.h')
cppimport('sys/fcntl.h')
cppimport('fcntl.h')
cppimport('uv-errno.h')
local buffer = ""