aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-07-01 13:14:15 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-07-01 13:14:15 -0300
commiteb8499c8e03b96071b40b6659f72391f1c6a2a12 (patch)
treecbaaccabb2040b77bdbcb852f6e944e5f5e378ac
parent47c562435bd82b5ac5b8574fe80d2ff2ff8f9452 (diff)
downloadlua-eb8499c8e03b96071b40b6659f72391f1c6a2a12.tar.gz
lua-eb8499c8e03b96071b40b6659f72391f1c6a2a12.tar.bz2
lua-eb8499c8e03b96071b40b6659f72391f1c6a2a12.zip
use of LUAI_UINT32 replaced by 'unsigned LUA_INT32' (one less
definition needed)
-rw-r--r--llimits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llimits.h b/llimits.h
index b6ccdb28..5f254f72 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.70 2006/09/11 14:07:24 roberto Exp roberto $ 2** $Id: llimits.h,v 1.71 2009/06/08 19:35:59 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,7 +15,7 @@
15#include "lua.h" 15#include "lua.h"
16 16
17 17
18typedef LUAI_UINT32 lu_int32; 18typedef unsigned LUA_INT32 lu_int32;
19 19
20typedef LUAI_UMEM lu_mem; 20typedef LUAI_UMEM lu_mem;
21 21