[Expat-checkins] expat/lib expat.h, 1.72, 1.73 expat_external.h, 1.2, 1.3

Karl Waclawek kwaclaw at users.sourceforge.net
Fri Nov 26 01:20:24 CET 2004


Update of /cvsroot/expat/expat/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2414

Modified Files:
	expat.h expat_external.h 
Log Message:
Added include guard to expat_external.h.
Renamed include guard for expat.h, to reflect the changed file name.

Index: expat.h
===================================================================
RCS file: /cvsroot/expat/expat/lib/expat.h,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- expat.h	24 Sep 2004 13:06:29 -0000	1.72
+++ expat.h	26 Nov 2004 00:20:21 -0000	1.73
@@ -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 @@
 }
 #endif
 
-#endif /* not XmlParse_INCLUDED */
+#endif /* not Expat_INCLUDED */

Index: expat_external.h
===================================================================
RCS file: /cvsroot/expat/expat/lib/expat_external.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- expat_external.h	10 Aug 2004 17:34:19 -0000	1.2
+++ expat_external.h	26 Nov 2004 00:20:21 -0000	1.3
@@ -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 @@
 #ifdef __cplusplus
 }
 #endif
+
+#endif /* not Expat_External_INCLUDED */



More information about the Expat-checkins mailing list