summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/expat/intconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/expat/intconfig.h')
-rw-r--r--src/lib/expat/intconfig.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/lib/expat/intconfig.h b/src/lib/expat/intconfig.h
new file mode 100644
index 00000000000..88092e6a006
--- /dev/null
+++ b/src/lib/expat/intconfig.h
@@ -0,0 +1,19 @@
+#ifndef INTCONFIG_H
+#define INTCONFIG_H
+
+#include <stdlib.h>
+#include <string.h>
+
+#define XML_NS 1
+#define XML_DTD 1
+#define XML_CONTEXT_BYTES 1024
+
+#ifdef USE_LSB
+#define BYTEORDER 1234
+#else
+#define BYTEORDER 4321
+#endif
+
+#define HAVE_MEMMOVE
+
+#endif