aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lvm.h b/lvm.h
index a371326f..38db19aa 100644
--- a/lvm.h
+++ b/lvm.h
@@ -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);
25void luaV_setglobal (TaggedString *ts); 26void luaV_setglobal (TaggedString *ts);
26StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base); 27StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base);
27void luaV_closure (int nelems); 28void luaV_closure (int nelems);
29void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal,
30 lua_Type ttype_great, IMS op);
28 31
29#endif 32#endif