aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--llimits.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/llimits.h b/llimits.h
index ec7b0c80..09355708 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.102 2013/01/29 16:00:40 roberto Exp roberto $ 2** $Id: llimits.h,v 1.103 2013/02/20 14:08:56 roberto Exp roberto $
3** Limits, basic types, and some other `installation-dependent' definitions 3** Limits, basic types, and some other `installation-dependent' definitions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -96,6 +96,8 @@ typedef LUAI_UACNUMBER l_uacNumber;
96#define cast_num(i) cast(lua_Number, (i)) 96#define cast_num(i) cast(lua_Number, (i))
97#define cast_int(i) cast(int, (i)) 97#define cast_int(i) cast(int, (i))
98#define cast_uchar(i) cast(unsigned char, (i)) 98#define cast_uchar(i) cast(unsigned char, (i))
99#define cast_integer(i) cast(lua_Integer, (i))
100#define cast_unsigned(i) cast(lua_Unsigned, (i))
99 101
100 102
101/* 103/*