'lessequal' renamed 'luaV_lessequal' and exported to be used by

'lua_compare'
This commit is contained in:
Roberto Ierusalimschy
2009-06-17 13:17:14 -03:00
parent a21c89ddc8
commit 77fd93188e
2 changed files with 5 additions and 4 deletions

3
lvm.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: lvm.h,v 2.8 2009/03/10 17:14:37 roberto Exp $
** $Id: lvm.h,v 2.9 2009/05/27 17:11:27 roberto Exp roberto $
** Lua virtual machine
** See Copyright Notice in lua.h
*/
@@ -26,6 +26,7 @@
LUAI_FUNC int luaV_equalval_ (lua_State *L, const TValue *t1, const TValue *t2);
LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
LUAI_FUNC int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r);
LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n);
LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj);
LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key,