From 9e24f0c5c1b1097295d0619d95da66e6b2d83ac9 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 27 Feb 2016 17:22:27 +0100 Subject: patch 7.4.1431 Problem: Including header files twice. Solution: Remove the extra includes. --- src/if_cscope.h | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'src/if_cscope.h') diff --git a/src/if_cscope.h b/src/if_cscope.h index b59717017..a572f7385 100644 --- a/src/if_cscope.h +++ b/src/if_cscope.h @@ -11,16 +11,11 @@ #if defined(FEAT_CSCOPE) || defined(PROTO) -#if defined(UNIX) -# include /* pid_t */ -# include /* dev_t, ino_t */ -#else -# if defined (WIN32) -# ifndef WIN32_LEAN_AND_MEAN -# define WIN32_LEAN_AND_MEAN -# endif -# include +#if defined (WIN32) +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN # endif +# include #endif #define CSCOPE_SUCCESS 0 -- cgit v1.2.1