From: Todd C. Miller Date: Tue, 8 Feb 2005 03:55:42 +0000 (+0000) Subject: #include not "compat.h" X-Git-Tag: SUDO_1_7_0~717 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b950f2807592ed2a06e8cc828832d2059516e90e;p=sudo #include not "compat.h" --- diff --git a/error.c b/error.c index 3893e7c8b..9ab471ae5 100644 --- a/error.c +++ b/error.c @@ -20,7 +20,7 @@ #include #include -#include "compat.h" +#include #include "error.h" #ifndef lint diff --git a/fnmatch.c b/fnmatch.c index 3c2e02d7f..148435808 100644 --- a/fnmatch.c +++ b/fnmatch.c @@ -47,7 +47,7 @@ # endif #endif /* HAVE_STRING_H */ -#include "compat.h" +#include #include "emul/fnmatch.h" #undef EOS diff --git a/getcwd.c b/getcwd.c index a32bc47b5..cd47cf44d 100644 --- a/getcwd.c +++ b/getcwd.c @@ -72,7 +72,7 @@ # endif #endif -#include "compat.h" +#include #define ISDOT(dp) \ (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \ diff --git a/glob.c b/glob.c index 45d01281a..b8ca7d7ae 100644 --- a/glob.c +++ b/glob.c @@ -97,7 +97,7 @@ #include #include -#include "compat.h" +#include #include "emul/glob.h" #define DOLLAR '$' diff --git a/snprintf.c b/snprintf.c index 85812d4b5..ad5e47e18 100644 --- a/snprintf.c +++ b/snprintf.c @@ -73,7 +73,7 @@ # include #endif -#include "compat.h" +#include #ifndef lint __unused static const char rcsid[] = "$Sudo$";