diff options
Diffstat (limited to '')
-rw-r--r-- | ldo.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -67,6 +67,7 @@ | |||
67 | /* type of protected functions, to be ran by 'runprotected' */ | 67 | /* type of protected functions, to be ran by 'runprotected' */ |
68 | typedef void (*Pfunc) (lua_State *L, void *ud); | 68 | typedef void (*Pfunc) (lua_State *L, void *ud); |
69 | 69 | ||
70 | LUAI_FUNC l_noret luaD_errerr (lua_State *L); | ||
70 | LUAI_FUNC void luaD_seterrorobj (lua_State *L, TStatus errcode, StkId oldtop); | 71 | LUAI_FUNC void luaD_seterrorobj (lua_State *L, TStatus errcode, StkId oldtop); |
71 | LUAI_FUNC TStatus luaD_protectedparser (lua_State *L, ZIO *z, | 72 | LUAI_FUNC TStatus luaD_protectedparser (lua_State *L, ZIO *z, |
72 | const char *name, | 73 | const char *name, |
@@ -90,6 +91,7 @@ LUAI_FUNC void luaD_shrinkstack (lua_State *L); | |||
90 | LUAI_FUNC void luaD_inctop (lua_State *L); | 91 | LUAI_FUNC void luaD_inctop (lua_State *L); |
91 | 92 | ||
92 | LUAI_FUNC l_noret luaD_throw (lua_State *L, TStatus errcode); | 93 | LUAI_FUNC l_noret luaD_throw (lua_State *L, TStatus errcode); |
94 | LUAI_FUNC l_noret luaD_throwbaselevel (lua_State *L, TStatus errcode); | ||
93 | LUAI_FUNC TStatus luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); | 95 | LUAI_FUNC TStatus luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); |
94 | 96 | ||
95 | #endif | 97 | #endif |