From: Todd C. Miller Date: Sat, 25 May 1996 23:23:32 +0000 (+0000) Subject: now includes compat.h and config.h X-Git-Tag: SUDO_1_5_0~195 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63e1abb3dd6850293497194223d0b3c5a63a2d27;p=sudo now includes compat.h and config.h --- diff --git a/fnmatch.c b/fnmatch.c index abc26f9d4..05dbf26cd 100644 --- a/fnmatch.c +++ b/fnmatch.c @@ -43,7 +43,8 @@ static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94"; * Compares a filename or pathname to a pattern. */ -#include "emul/fnmatch.h" +#include "config.h" + #ifdef HAVE_STRING_H #include #endif /* HAVE_STRING_H */ @@ -52,6 +53,9 @@ static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94"; #endif /* HAVE_STRINGS_H */ #include +#include "compat.h" +#include "emul/fnmatch.h" + #undef EOS #define EOS '\0'