aboutsummaryrefslogtreecommitdiff
path: root/ldebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-04-25 12:59:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-04-25 12:59:42 -0300
commit32bf6c9b277d04a35591ca6420cf1518ebc1a7f3 (patch)
treed0d2cf99489a745e5d54f9a4779629b5095c47f1 /ldebug.h
parent9c43d6a24e2612504686f9efbade264e2246bbfb (diff)
downloadlua-32bf6c9b277d04a35591ca6420cf1518ebc1a7f3.tar.gz
lua-32bf6c9b277d04a35591ca6420cf1518ebc1a7f3.tar.bz2
lua-32bf6c9b277d04a35591ca6420cf1518ebc1a7f3.zip
functions 'traceexec', 'callTM', and 'call_binTM' moved to other
files to make 'lvm.c' a little smaller
Diffstat (limited to 'ldebug.h')
-rw-r--r--ldebug.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ldebug.h b/ldebug.h
index 7af551e2..946b37b3 100644
--- a/ldebug.h
+++ b/ldebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.h,v 2.6 2011/06/02 19:31:40 roberto Exp roberto $ 2** $Id: ldebug.h,v 2.7 2011/10/07 20:45:19 roberto Exp roberto $
3** Auxiliary functions from Debug Interface module 3** Auxiliary functions from Debug Interface module
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -30,5 +30,7 @@ LUAI_FUNC l_noret luaG_ordererror (lua_State *L, const TValue *p1,
30 const TValue *p2); 30 const TValue *p2);
31LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...); 31LUAI_FUNC l_noret luaG_runerror (lua_State *L, const char *fmt, ...);
32LUAI_FUNC l_noret luaG_errormsg (lua_State *L); 32LUAI_FUNC l_noret luaG_errormsg (lua_State *L);
33LUAI_FUNC void luaG_traceexec (lua_State *L);
34
33 35
34#endif 36#endif