From 5db511b6f1d1d5fc67fe46118d5e3aefc488bea4 Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Mon, 11 Jan 2016 12:41:03 -0500 Subject: Stop using In Vim, at least the constant `I_PUSH` is used from , but Neovim doesn't seem to use anything from said header. Besides that, POSIX.1-2008[1] marks this header as obsolescent, and there don't seem to be many platforms that even have it. [1]: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stropts.h.html#tag_13_52_11 --- src/nvim/os_unix.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/nvim/os_unix.c') diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 62b264046c..6c7cb3bba7 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -44,10 +44,6 @@ #include "nvim/os/signal.h" #include "nvim/msgpack_rpc/helpers.h" -#ifdef HAVE_STROPTS_H -# include -#endif - #ifdef HAVE_SELINUX # include static int selinux_enabled = -1; -- cgit