aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ldo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ldo.h b/ldo.h
index ea1655e1..2d4ca8be 100644
--- a/ldo.h
+++ b/ldo.h
@@ -67,6 +67,7 @@
67/* type of protected functions, to be ran by 'runprotected' */ 67/* type of protected functions, to be ran by 'runprotected' */
68typedef void (*Pfunc) (lua_State *L, void *ud); 68typedef void (*Pfunc) (lua_State *L, void *ud);
69 69
70LUAI_FUNC l_noret luaD_errerr (lua_State *L);
70LUAI_FUNC void luaD_seterrorobj (lua_State *L, TStatus errcode, StkId oldtop); 71LUAI_FUNC void luaD_seterrorobj (lua_State *L, TStatus errcode, StkId oldtop);
71LUAI_FUNC TStatus luaD_protectedparser (lua_State *L, ZIO *z, 72LUAI_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);
90LUAI_FUNC void luaD_inctop (lua_State *L); 91LUAI_FUNC void luaD_inctop (lua_State *L);
91 92
92LUAI_FUNC l_noret luaD_throw (lua_State *L, TStatus errcode); 93LUAI_FUNC l_noret luaD_throw (lua_State *L, TStatus errcode);
94LUAI_FUNC l_noret luaD_throwbaselevel (lua_State *L, TStatus errcode);
93LUAI_FUNC TStatus luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); 95LUAI_FUNC TStatus luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
94 96
95#endif 97#endif