diff options
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 1.9 1999/08/16 20:52:00 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.10 1999/10/14 19:46:57 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 | */ |
@@ -24,8 +24,8 @@ void luaV_setn (Hash *t, int val); | |||
24 | void luaV_gettable (void); | 24 | void luaV_gettable (void); |
25 | void luaV_settable (const TObject *t); | 25 | void luaV_settable (const TObject *t); |
26 | void luaV_rawsettable (const TObject *t); | 26 | void luaV_rawsettable (const TObject *t); |
27 | void luaV_getglobal (TaggedString *ts); | 27 | void luaV_getglobal (GlobalVar *gv); |
28 | void luaV_setglobal (TaggedString *ts); | 28 | void luaV_setglobal (GlobalVar *gv); |
29 | StkId luaV_execute (const Closure *cl, const TProtoFunc *tf, StkId base); | 29 | StkId luaV_execute (const Closure *cl, const TProtoFunc *tf, StkId base); |
30 | void luaV_closure (int nelems); | 30 | void luaV_closure (int nelems); |
31 | void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal, | 31 | void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal, |