aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lvm.h b/lvm.h
index 591c94ec..b352e8ed 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.21 2013/04/26 16:03:50 roberto Exp roberto $ 2** $Id: lvm.h,v 2.22 2013/04/29 17:12:50 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*/
@@ -21,6 +21,8 @@
21#define tointeger(o,i) \ 21#define tointeger(o,i) \
22 (ttisinteger(o) ? (*(i) = ivalue(o), 1) : luaV_tointeger_(o,i)) 22 (ttisinteger(o) ? (*(i) = ivalue(o), 1) : luaV_tointeger_(o,i))
23 23
24#define intop(op,v1,v2) \
25 cast_integer(cast_unsigned(v1) op cast_unsigned(v2))
24 26
25#define luaV_rawequalobj(t1,t2) luaV_equalobj(NULL,t1,t2) 27#define luaV_rawequalobj(t1,t2) luaV_equalobj(NULL,t1,t2)
26 28