aboutsummaryrefslogtreecommitdiff
path: root/ltests.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.h')
-rw-r--r--ltests.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ltests.h b/ltests.h
index 821ce07c..12ad9dcf 100644
--- a/ltests.h
+++ b/ltests.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.h,v 1.14 2002/06/13 13:45:31 roberto Exp roberto $ 2** $Id: ltests.h,v 1.15 2002/07/17 16:25:13 roberto Exp roberto $
3** Internal Header for Debugging of the Lua Implementation 3** Internal Header for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -34,6 +34,7 @@ extern unsigned long memdebug_memlimit;
34 34
35 35
36#define l_realloc(b, os, s) debug_realloc(b, os, s) 36#define l_realloc(b, os, s) debug_realloc(b, os, s)
37#define l_free(b, os) debug_realloc(b, os, 0)
37 38
38void *debug_realloc (void *block, size_t oldsize, size_t size); 39void *debug_realloc (void *block, size_t oldsize, size_t size);
39 40