luac´ -> luai' (to avoid confusion with other luac stuff)

This commit is contained in:
Roberto Ierusalimschy
2005-03-09 13:28:07 -03:00
parent f8df21bd20
commit 370d31a559
14 changed files with 126 additions and 126 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: llimits.h,v 1.63 2005/01/14 14:19:42 roberto Exp roberto $
** $Id: llimits.h,v 1.64 2005/03/08 20:10:05 roberto Exp roberto $
** Limits, basic types, and some other `installation-dependent' definitions
** See Copyright Notice in lua.h
*/
@@ -15,14 +15,14 @@
#include "lua.h"
#define api_check luac_apicheck
#define api_check luai_apicheck
typedef LUAC_UINT32 lu_int32;
typedef LUAI_UINT32 lu_int32;
typedef LUAC_UMEM lu_mem;
typedef LUAI_UMEM lu_mem;
typedef LUAC_MEM l_mem;
typedef LUAI_MEM l_mem;
@@ -47,11 +47,11 @@ typedef unsigned char lu_byte;
/* type to ensure maximum alignment */
typedef LUAC_USER_ALIGNMENT_T L_Umaxalign;
typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
/* result of a `usual argument conversion' over lua_Number */
typedef LUAC_UACNUMBER l_uacNumber;
typedef LUAI_UACNUMBER l_uacNumber;
#define check_exp(c,e) (lua_assert(c), (e))