]> granicus.if.org Git - sudo/commitdiff
now includes compat.h and config.h
authorTodd C. Miller <Todd.Miller@courtesan.com>
Sat, 25 May 1996 23:23:32 +0000 (23:23 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Sat, 25 May 1996 23:23:32 +0000 (23:23 +0000)
fnmatch.c

index abc26f9d403a8faddba5c907611b2f72779cc6a9..05dbf26cdc836c0b978a968b5ae3028e603b2825 100644 (file)
--- 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 <string.h>
 #endif /* HAVE_STRING_H */
@@ -52,6 +53,9 @@ static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94";
 #endif /* HAVE_STRINGS_H */
 #include <string.h>
 
+#include "compat.h"
+#include "emul/fnmatch.h"
+
 #undef EOS
 #define        EOS     '\0'