aboutsummaryrefslogtreecommitdiff
path: root/lmem.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-13 14:30:47 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-13 14:30:47 -0200
commiteab57ed6fddcc70891f017d7a1c4a51b3d3c2018 (patch)
tree28d0f2fe3c813c0a3f8c60a3e162b0d4dcb3b8b1 /lmem.h
parentea45f3eb284e86354f19536b22a49b61f1800cc3 (diff)
downloadlua-eab57ed6fddcc70891f017d7a1c4a51b3d3c2018.tar.gz
lua-eab57ed6fddcc70891f017d7a1c4a51b3d3c2018.tar.bz2
lua-eab57ed6fddcc70891f017d7a1c4a51b3d3c2018.zip
details
Diffstat (limited to 'lmem.h')
-rw-r--r--lmem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lmem.h b/lmem.h
index e666c09c..3341ebd0 100644
--- a/lmem.h
+++ b/lmem.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lmem.h,v 1.10 1999/11/22 13:12:07 roberto Exp roberto $ 2** $Id: lmem.h,v 1.11 1999/12/27 17:33:22 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*/
@@ -34,8 +34,8 @@ void *luaM_growaux (lua_State *L, void *block, unsigned long nelems, int inc, in
34 34
35 35
36#ifdef DEBUG 36#ifdef DEBUG
37extern unsigned long numblocks; 37extern unsigned long memdebug_numblocks;
38extern unsigned long totalmem; 38extern unsigned long memdebug_total;
39#endif 39#endif
40 40
41 41