Initial Revision

This commit is contained in:
James Clark 1998-03-08 03:39:56 +00:00
parent 34e680d0b7
commit a7e34c37ab

11
expat/xmltok/xmldef.h Executable file
View File

@ -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 */