fix to compile with debugging turned off

This commit is contained in:
ehouse 2010-01-10 23:39:54 +00:00
parent 8d6d22f425
commit 11b453d5cf

View file

@ -57,6 +57,7 @@ typedef XP_U32 XP_Time;
#else
# define XP_MALLOC(pool, nbytes) malloc(nbytes)
# define XP_REALLOC(pool, p, bytes) realloc((p), (bytes))
# define XP_CALLOC( pool, bytes ) calloc( 1, (bytes) )
# define XP_FREE(pool, p) free(p)
#endif