aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lvm.h b/lvm.h
index 1a733a44..c1facfc1 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 1.18 2000/03/09 00:19:22 roberto Exp roberto $ 2** $Id: lvm.h,v 1.19 2000/03/10 18:37:44 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -26,8 +26,9 @@ void luaV_settable (lua_State *L, StkId t, StkId top);
26void luaV_rawsettable (lua_State *L, StkId t); 26void luaV_rawsettable (lua_State *L, StkId t);
27void luaV_getglobal (lua_State *L, GlobalVar *gv, StkId top); 27void luaV_getglobal (lua_State *L, GlobalVar *gv, StkId top);
28void luaV_setglobal (lua_State *L, GlobalVar *gv, StkId top); 28void luaV_setglobal (lua_State *L, GlobalVar *gv, StkId top);
29StkId luaV_execute (lua_State *L, const Closure *cl, const Proto *tf, StkId base); 29StkId luaV_execute (lua_State *L, const Closure *cl, register StkId base);
30void luaV_closure (lua_State *L, int nelems); 30void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems);
31void luaV_Lclosure (lua_State *L, Proto *l, int nelems);
31int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r, StkId top); 32int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r, StkId top);
32 33
33#endif 34#endif