From 45594b1bb3c6e0fbe77f853cfc574f48c549f5b3 Mon Sep 17 00:00:00 2001 From: Karl Waclawek Date: Fri, 26 Nov 2004 00:20:21 +0000 Subject: [PATCH] Added include guard to expat_external.h. Renamed include guard for expat.h, to reflect the changed file name. --- expat/lib/expat.h | 6 +++--- expat/lib/expat_external.h | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/expat/lib/expat.h b/expat/lib/expat.h index 8510ae56..074d47b2 100644 --- a/expat/lib/expat.h +++ b/expat/lib/expat.h @@ -2,8 +2,8 @@ See the file COPYING for copying permission. */ -#ifndef XmlParse_INCLUDED -#define XmlParse_INCLUDED 1 +#ifndef Expat_INCLUDED +#define Expat_INCLUDED 1 #ifdef __VMS /* 0 1 2 3 0 1 2 3 @@ -1005,4 +1005,4 @@ XML_GetFeatureList(void); } #endif -#endif /* not XmlParse_INCLUDED */ +#endif /* not Expat_INCLUDED */ diff --git a/expat/lib/expat_external.h b/expat/lib/expat_external.h index 59eff581..7202e119 100644 --- a/expat/lib/expat_external.h +++ b/expat/lib/expat_external.h @@ -2,6 +2,9 @@ See the file COPYING for copying permission. */ +#ifndef Expat_External_INCLUDED +#define Expat_External_INCLUDED 1 + /* External API definitions */ #if defined(_MSC_EXTENSIONS) && !defined(__BEOS__) && !defined(__CYGWIN__) @@ -94,3 +97,5 @@ typedef char XML_LChar; #ifdef __cplusplus } #endif + +#endif /* not Expat_External_INCLUDED */ -- 2.40.0