aboutsummaryrefslogtreecommitdiff
path: root/lmem.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-01 18:30:44 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-01 18:30:44 -0200
commit00c122cc291cfb24e01a5c00f2c3503a6dfa073e (patch)
treed0bb5d6abe27967640f87cca5db9dcaf62cde62d /lmem.h
parent03160920cf51a06bbb4406ec5ddb4f5dd52f0d7c (diff)
downloadlua-00c122cc291cfb24e01a5c00f2c3503a6dfa073e.tar.gz
lua-00c122cc291cfb24e01a5c00f2c3503a6dfa073e.tar.bz2
lua-00c122cc291cfb24e01a5c00f2c3503a6dfa073e.zip
other distribution of memory debug information.
Diffstat (limited to 'lmem.h')
-rw-r--r--lmem.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lmem.h b/lmem.h
index 8d4bd32c..ac7ba9ae 100644
--- a/lmem.h
+++ b/lmem.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lmem.h,v 1.2 1997/11/26 18:53:45 roberto Exp roberto $ 2** $Id: lmem.h,v 1.3 1997/11/26 20:44:52 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*/
@@ -36,7 +36,8 @@ int luaM_growaux (void **block, unsigned long nelems, int size,
36 36
37 37
38#ifdef DEBUG 38#ifdef DEBUG
39void luaM_query (void); 39extern unsigned long numblocks;
40extern unsigned long totalmem;
40#endif 41#endif
41 42
42 43