Add definition of PR_Realloc under MOZILLA; also fix malloc to use

PR_Malloc
This commit is contained in:
James Clark 1998-11-24 08:44:37 +00:00
parent 48911f1641
commit d38b08addb

View file

@ -44,7 +44,8 @@ particular environments. */
#ifdef MOZILLA
#include "nspr.h"
#define malloc(x) PR_Calloc(1,(x))
#define malloc(x) PR_Malloc(x)
#define realloc(x, y) PR_Realloc((x), (y))
#define calloc(x, y) PR_Calloc((x),(y))
#define free(x) PR_Free(x)
#define int int32