diff options
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 1.3 1997/10/16 10:59:34 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.4 1997/12/15 16:17:20 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 | */ |
@@ -10,6 +10,7 @@ | |||
10 | 10 | ||
11 | #include "ldo.h" | 11 | #include "ldo.h" |
12 | #include "lobject.h" | 12 | #include "lobject.h" |
13 | #include "ltm.h" | ||
13 | 14 | ||
14 | 15 | ||
15 | #define tonumber(o) ((ttype(o) != LUA_T_NUMBER) && (luaV_tonumber(o) != 0)) | 16 | #define tonumber(o) ((ttype(o) != LUA_T_NUMBER) && (luaV_tonumber(o) != 0)) |
@@ -25,5 +26,7 @@ void luaV_getglobal (TaggedString *ts); | |||
25 | void luaV_setglobal (TaggedString *ts); | 26 | void luaV_setglobal (TaggedString *ts); |
26 | StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base); | 27 | StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base); |
27 | void luaV_closure (int nelems); | 28 | void luaV_closure (int nelems); |
29 | void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal, | ||
30 | lua_Type ttype_great, IMS op); | ||
28 | 31 | ||
29 | #endif | 32 | #endif |