diff options
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -184,11 +184,13 @@ typedef LUAI_UACINT l_uacInt; | |||
184 | ** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h) | 184 | ** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h) |
185 | */ | 185 | */ |
186 | #if LUAI_BITSINT >= 32 | 186 | #if LUAI_BITSINT >= 32 |
187 | typedef unsigned int Instruction; | 187 | typedef unsigned int l_uint32; |
188 | #else | 188 | #else |
189 | typedef unsigned long Instruction; | 189 | typedef unsigned long l_uint32; |
190 | #endif | 190 | #endif |
191 | 191 | ||
192 | typedef l_uint32 Instruction; | ||
193 | |||
192 | 194 | ||
193 | 195 | ||
194 | /* | 196 | /* |