]> granicus.if.org Git - libexpat/commitdiff
Added include guard to expat_external.h.
authorKarl Waclawek <kwaclaw@users.sourceforge.net>
Fri, 26 Nov 2004 00:20:21 +0000 (00:20 +0000)
committerKarl Waclawek <kwaclaw@users.sourceforge.net>
Fri, 26 Nov 2004 00:20:21 +0000 (00:20 +0000)
Renamed include guard for expat.h, to reflect the changed file name.

expat/lib/expat.h
expat/lib/expat_external.h

index 8510ae56eaf2ff76cb17db8be733b52df90a5020..074d47b206ba41a8c3995eccdb351c844c0ec75a 100644 (file)
@@ -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 */
index 59eff5814bfa1a3614c7f9c7852a96062f5d5a62..7202e119a403159443ec9501ad6d19f0a2598369 100644 (file)
@@ -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 */