# | Line 96 | Line 96 | typedef long int32; | |
---|---|---|
96 | #if SIZEOF_LONG == 8 | |
97 | typedef unsigned long uint64; | |
98 | typedef long int64; | |
99 | + | #define VAL64(a) (a ## l) |
100 | + | #define UVAL64(a) (a ## ul) |
101 | #elif SIZEOF_LONG_LONG == 8 | |
102 | typedef unsigned long long uint64; | |
103 | typedef long long int64; | |
104 | + | #define VAL64(a) (a ## LL) |
105 | + | #define UVAL64(a) (a ## uLL) |
106 | #else | |
107 | #error "No 8 byte type, you lose." | |
108 | #endif |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |