From a7e34c37ab96214ae87ad6496014f5b13f8626b0 Mon Sep 17 00:00:00 2001 From: James Clark Date: Sun, 8 Mar 1998 03:39:56 +0000 Subject: [PATCH] Initial Revision --- expat/xmltok/xmldef.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 expat/xmltok/xmldef.h diff --git a/expat/xmltok/xmldef.h b/expat/xmltok/xmldef.h new file mode 100755 index 00000000..e165742e --- /dev/null +++ b/expat/xmltok/xmldef.h @@ -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 */