diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-07-01 13:14:15 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-07-01 13:14:15 -0300 |
commit | eb8499c8e03b96071b40b6659f72391f1c6a2a12 (patch) | |
tree | cbaaccabb2040b77bdbcb852f6e944e5f5e378ac | |
parent | 47c562435bd82b5ac5b8574fe80d2ff2ff8f9452 (diff) | |
download | lua-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
18 | typedef LUAI_UINT32 lu_int32; | 18 | typedef unsigned LUA_INT32 lu_int32; |
19 | 19 | ||
20 | typedef LUAI_UMEM lu_mem; | 20 | typedef LUAI_UMEM lu_mem; |
21 | 21 | ||