aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/llimits.h b/llimits.h
index 019eb727..9b7a2544 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.83 2010/11/03 15:16:17 roberto Exp roberto $ 2** $Id: llimits.h,v 1.84 2010/11/08 16:33:20 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*/
@@ -87,6 +87,7 @@ typedef LUAI_UACNUMBER l_uacNumber;
87#define cast_byte(i) cast(lu_byte, (i)) 87#define cast_byte(i) cast(lu_byte, (i))
88#define cast_num(i) cast(lua_Number, (i)) 88#define cast_num(i) cast(lua_Number, (i))
89#define cast_int(i) cast(int, (i)) 89#define cast_int(i) cast(int, (i))
90#define cast_uchar(i) cast(unsigned char, (i))
90 91
91 92
92/* 93/*