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 365e4a48..07235f19 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.17 2011/05/31 18:27:56 roberto Exp $ 2** $Id: lvm.h,v 2.19 2013/04/15 15:44:46 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*/
@@ -33,6 +33,9 @@ LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key,
33LUAI_FUNC void luaV_finishOp (lua_State *L); 33LUAI_FUNC void luaV_finishOp (lua_State *L);
34LUAI_FUNC void luaV_execute (lua_State *L); 34LUAI_FUNC void luaV_execute (lua_State *L);
35LUAI_FUNC void luaV_concat (lua_State *L, int total); 35LUAI_FUNC void luaV_concat (lua_State *L, int total);
36LUAI_FUNC lua_Integer luaV_div (lua_State *L, lua_Integer x, lua_Integer y);
37LUAI_FUNC lua_Integer luaV_mod (lua_State *L, lua_Integer x, lua_Integer y);
38LUAI_FUNC lua_Integer luaV_pow (lua_Integer x, lua_Integer y);
36LUAI_FUNC void luaV_arith (lua_State *L, StkId ra, const TValue *rb, 39LUAI_FUNC void luaV_arith (lua_State *L, StkId ra, const TValue *rb,
37 const TValue *rc, TMS op); 40 const TValue *rc, TMS op);
38LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb); 41LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb);