aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/lvm.h b/lvm.h
index 0cae36c9..0e096c96 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $ 2** $Id: lvm.h,v 2.2 2004/05/14 19:25:09 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,10 +26,8 @@ int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
26int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2); 26int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2);
27const TValue *luaV_tonumber (const TValue *obj, TValue *n); 27const TValue *luaV_tonumber (const TValue *obj, TValue *n);
28int luaV_tostring (lua_State *L, StkId obj); 28int luaV_tostring (lua_State *L, StkId obj);
29StkId luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val, 29void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val);
30 const Instruction *pc); 30void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val);
31StkId luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val,
32 const Instruction *pc);
33StkId luaV_execute (lua_State *L, int nexeccalls); 31StkId luaV_execute (lua_State *L, int nexeccalls);
34void luaV_concat (lua_State *L, int total, int last); 32void luaV_concat (lua_State *L, int total, int last);
35 33