From afb5ef72e1974ba6d0fc336637c71f3ee8fb03a2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sun, 12 Jul 1998 13:16:43 -0300 Subject: new function "sort" + many small changes --- lvm.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lvm.h') diff --git a/lvm.h b/lvm.h index a371326f..38db19aa 100644 --- a/lvm.h +++ b/lvm.h @@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 1.3 1997/10/16 10:59:34 roberto Exp roberto $ +** $Id: lvm.h,v 1.4 1997/12/15 16:17:20 roberto Exp roberto $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -10,6 +10,7 @@ #include "ldo.h" #include "lobject.h" +#include "ltm.h" #define tonumber(o) ((ttype(o) != LUA_T_NUMBER) && (luaV_tonumber(o) != 0)) @@ -25,5 +26,7 @@ void luaV_getglobal (TaggedString *ts); void luaV_setglobal (TaggedString *ts); StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base); void luaV_closure (int nelems); +void luaV_comparison (lua_Type ttype_less, lua_Type ttype_equal, + lua_Type ttype_great, IMS op); #endif -- cgit v1.2.3-55-g6feb