]> granicus.if.org Git - libexpat/commitdiff
Initial Revision
authorJames Clark <jjc@jclark.com>
Sun, 8 Mar 1998 03:39:56 +0000 (03:39 +0000)
committerJames Clark <jjc@jclark.com>
Sun, 8 Mar 1998 03:39:56 +0000 (03:39 +0000)
expat/xmltok/xmldef.h [new file with mode: 0755]

diff --git a/expat/xmltok/xmldef.h b/expat/xmltok/xmldef.h
new file mode 100755 (executable)
index 0000000..e165742
--- /dev/null
@@ -0,0 +1,11 @@
+/* This file can be used for any definitions needed in
+particular environments. */
+
+#ifdef MOZILLA
+
+#include "nspr.h"
+#define malloc(x) PR_Calloc(1,(x))
+#define free(x) PR_Free(x)
+#define int int32
+
+#endif /* MOZILLA */