mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 13:14:59 +00:00
Add definition of PR_Realloc under MOZILLA; also fix malloc to use
PR_Malloc
This commit is contained in:
parent
48911f1641
commit
d38b08addb
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue