aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/llimits.h b/llimits.h
index 52eacfc7..c90680a7 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.63 2005/01/14 14:19:42 roberto Exp roberto $ 2** $Id: llimits.h,v 1.64 2005/03/08 20:10:05 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*/
@@ -15,14 +15,14 @@
15#include "lua.h" 15#include "lua.h"
16 16
17 17
18#define api_check luac_apicheck 18#define api_check luai_apicheck
19 19
20 20
21typedef LUAC_UINT32 lu_int32; 21typedef LUAI_UINT32 lu_int32;
22 22
23typedef LUAC_UMEM lu_mem; 23typedef LUAI_UMEM lu_mem;
24 24
25typedef LUAC_MEM l_mem; 25typedef LUAI_MEM l_mem;
26 26
27 27
28 28
@@ -47,11 +47,11 @@ typedef unsigned char lu_byte;
47 47
48 48
49/* type to ensure maximum alignment */ 49/* type to ensure maximum alignment */
50typedef LUAC_USER_ALIGNMENT_T L_Umaxalign; 50typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
51 51
52 52
53/* result of a `usual argument conversion' over lua_Number */ 53/* result of a `usual argument conversion' over lua_Number */
54typedef LUAC_UACNUMBER l_uacNumber; 54typedef LUAI_UACNUMBER l_uacNumber;
55 55
56 56
57#define check_exp(c,e) (lua_assert(c), (e)) 57#define check_exp(c,e) (lua_assert(c), (e))