diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-01-14 15:15:44 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-01-14 15:15:44 -0200 |
commit | 27163f032eed6b851b98a0ab67b1387d701e61c0 (patch) | |
tree | 045fbbe6b5f94ebf73f299fd5d90443d16a11d21 /ldebug.h | |
parent | eab57ed6fddcc70891f017d7a1c4a51b3d3c2018 (diff) | |
download | lua-27163f032eed6b851b98a0ab67b1387d701e61c0.tar.gz lua-27163f032eed6b851b98a0ab67b1387d701e61c0.tar.bz2 lua-27163f032eed6b851b98a0ab67b1387d701e61c0.zip |
Auxiliary functions from Debug Interface module
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ldebug.h b/ldebug.h new file mode 100644 index 00000000..6a9ef086 --- /dev/null +++ b/ldebug.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | ** $Id: $ | ||
3 | ** Auxiliary functions from Debug Interface module | ||
4 | ** See Copyright Notice in lua.h | ||
5 | */ | ||
6 | |||
7 | #ifndef ldebug_h | ||
8 | #define ldebug_h | ||
9 | |||
10 | |||
11 | #include "lobject.h" | ||
12 | #include "luadebug.h" | ||
13 | |||
14 | |||
15 | void luaG_callerror (lua_State *L, TObject *func); | ||
16 | void luaG_indexerror (lua_State *L, TObject *t); | ||
17 | |||
18 | |||
19 | #endif | ||