Define calloc as well.
This commit is contained in:
parent
a7e34c37ab
commit
fce5a0395f
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user