From 33321f2c856f04d2a928c89fed1b6d46012b0bc9 Mon Sep 17 00:00:00 2001 From: Seth Jackson Date: Sun, 17 Jan 2016 09:47:26 -0500 Subject: config: Remove HAVE_UNISTD_H. Unix systems must have this header but Windows does not have it at all. Since src/nvim/os/unix_defs.h includes without the guard in order to avoid including this in the numerous places we would need on Unix we just include src/nvim/os/os.h which will pull in for us. --- src/nvim/os/unix_defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/os') diff --git a/src/nvim/os/unix_defs.h b/src/nvim/os/unix_defs.h index 78fc9331d1..690a39c3cd 100644 --- a/src/nvim/os/unix_defs.h +++ b/src/nvim/os/unix_defs.h @@ -2,7 +2,7 @@ #define NVIM_OS_UNIX_DEFS_H // Windows doesn't have unistd.h, so we include it here to avoid numerous -// instances of `#ifdef HAVE_UNISTD_H'. +// instances of `#ifdef WIN32'. #include // POSIX.1-2008 says that NAME_MAX should be in here -- cgit