aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/c/expat/xmlparse.c
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-02-08 14:01:20 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-02-08 14:01:20 +0200
commitaa948b624f4c2c0a97f4d92915fa959cf005207f (patch)
tree1314b242e317984f840326df562758de9bdc289a /libxsde/xsde/c/expat/xmlparse.c
parentefb44d24d5c9f70c28c758bca4683f2e249d7078 (diff)
Use bracket includes in C sources
This way we can move the source code around without also having to move the headers.
Diffstat (limited to 'libxsde/xsde/c/expat/xmlparse.c')
-rw-r--r--libxsde/xsde/c/expat/xmlparse.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libxsde/xsde/c/expat/xmlparse.c b/libxsde/xsde/c/expat/xmlparse.c
index 51766e8..031e1a8 100644
--- a/libxsde/xsde/c/expat/xmlparse.c
+++ b/libxsde/xsde/c/expat/xmlparse.c
@@ -10,9 +10,9 @@
#define XML_BUILDING_EXPAT 1
-#include "config.h"
+#include <xsde/c/expat/config.h>
-#include "expat.h"
+#include <xsde/c/expat/expat.h>
#ifdef XSDE_CUSTOM_ALLOCATOR
# include <xsde/allocator.h>
@@ -76,9 +76,9 @@ typedef char ICHAR;
#endif /* HAVE_BCOPY */
#endif /* HAVE_MEMMOVE */
-#include "internal.h"
-#include "xmltok.h"
-#include "xmlrole.h"
+#include <xsde/c/expat/internal.h>
+#include <xsde/c/expat/xmltok.h>
+#include <xsde/c/expat/xmlrole.h>
typedef const XML_Char *KEY;