Define calloc as well.

This commit is contained in:
James Clark 1998-03-09 01:26:05 +00:00
parent a7e34c37ab
commit fce5a0395f

View File

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