summaryrefslogtreecommitdiff
path: root/ltests.c
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 /ltests.c
parentea45f3eb284e86354f19536b22a49b61f1800cc3 (diff)
downloadlua-eab57ed6fddcc70891f017d7a1c4a51b3d3c2018.tar.gz
lua-eab57ed6fddcc70891f017d7a1c4a51b3d3c2018.tar.bz2
lua-eab57ed6fddcc70891f017d7a1c4a51b3d3c2018.zip
details
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ltests.c b/ltests.c
index 8a57fcd9..658c9deb 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.2 1999/12/23 18:19:57 roberto Exp roberto $ 2** $Id: ltests.c,v 1.3 1999/12/27 17:33:22 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -30,8 +30,8 @@ void luaB_opentests (lua_State *L);
30 30
31 31
32static void mem_query (lua_State *L) { 32static void mem_query (lua_State *L) {
33 lua_pushnumber(L, totalmem); 33 lua_pushnumber(L, memdebug_total);
34 lua_pushnumber(L, numblocks); 34 lua_pushnumber(L, memdebug_numblocks);
35} 35}
36 36
37 37