aboutsummaryrefslogtreecommitdiff
path: root/lmem.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-30 14:29:59 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-30 14:29:59 -0200
commit37e9c2e74486ed443151430a9b73a3844d3554ef (patch)
tree2d225332e7bf2e9a83c233416b8aa9043dbe9e8b /lmem.h
parente42a219eebd2e4c6f11f8b175d3d0e0f6678b48c (diff)
downloadlua-37e9c2e74486ed443151430a9b73a3844d3554ef.tar.gz
lua-37e9c2e74486ed443151430a9b73a3844d3554ef.tar.bz2
lua-37e9c2e74486ed443151430a9b73a3844d3554ef.zip
macro DEBUG renamed to LUA_DEBUG
Diffstat (limited to 'lmem.h')
-rw-r--r--lmem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lmem.h b/lmem.h
index f1630238..6112237b 100644
--- a/lmem.h
+++ b/lmem.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lmem.h,v 1.14 2000/05/24 13:54:49 roberto Exp roberto $ 2** $Id: lmem.h,v 1.15 2000/08/07 18:39:16 roberto Exp roberto $
3** Interface to Memory Manager 3** Interface to Memory Manager
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -30,7 +30,7 @@ void *luaM_growaux (lua_State *L, void *block, size_t nelems,
30 ((v)=(t *)luaM_realloc(L, v,(n)*(lint32)sizeof(t))) 30 ((v)=(t *)luaM_realloc(L, v,(n)*(lint32)sizeof(t)))
31 31
32 32
33#ifdef DEBUG 33#ifdef LUA_DEBUG
34extern unsigned long memdebug_numblocks; 34extern unsigned long memdebug_numblocks;
35extern unsigned long memdebug_total; 35extern unsigned long memdebug_total;
36extern unsigned long memdebug_maxmem; 36extern unsigned long memdebug_maxmem;