1998-03-07 22:39:56 -05:00
|
|
|
/* This file can be used for any definitions needed in
|
|
|
|
particular environments. */
|
|
|
|
|
|
|
|
#ifdef MOZILLA
|
|
|
|
|
|
|
|
#include "nspr.h"
|
|
|
|
#define malloc(x) PR_Calloc(1,(x))
|
1998-03-08 20:26:05 -05:00
|
|
|
#define calloc(x, y) PR_Calloc((x),(y))
|
1998-03-07 22:39:56 -05:00
|
|
|
#define free(x) PR_Free(x)
|
|
|
|
#define int int32
|
|
|
|
|
|
|
|
#endif /* MOZILLA */
|