GCC does not like large constants without a suffix

This commit is contained in:
Rafal Kupiec 2018-07-12 15:17:17 +02:00
parent 8f7f9a1ef8
commit 331e21cb12
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ typedef double sxreal;
#define SXU16_HIGH 0xFFFF
#define SXI32_HIGH 0x7FFFFFFF
#define SXU32_HIGH 0xFFFFFFFF
#define SXI64_HIGH 0x7FFFFFFFFFFFFFFF
#define SXU64_HIGH 0xFFFFFFFFFFFFFFFF
#define SXI64_HIGH 0x7FFFFFFFFFFFFFFFLL
#define SXU64_HIGH 0xFFFFFFFFFFFFFFFFUL
#if !defined(TRUE)
#define TRUE 1
#endif