From fce5a0395f4e482423f9868d410911ebe16207ea Mon Sep 17 00:00:00 2001 From: James Clark Date: Mon, 9 Mar 1998 01:26:05 +0000 Subject: [PATCH] Define calloc as well. --- expat/xmltok/xmldef.h | 1 + 1 file changed, 1 insertion(+) diff --git a/expat/xmltok/xmldef.h b/expat/xmltok/xmldef.h index e165742e..e03b2de8 100755 --- a/expat/xmltok/xmldef.h +++ b/expat/xmltok/xmldef.h @@ -5,6 +5,7 @@ particular environments. */ #include "nspr.h" #define malloc(x) PR_Calloc(1,(x)) +#define calloc(x, y) PR_Calloc((x),(y)) #define free(x) PR_Free(x) #define int int32