* include/stdint.h: Correctly define INT64_MAX.
This commit is contained in:
@ -76,7 +76,7 @@ typedef unsigned long long uintmax_t;
|
||||
#define INT8_MAX (127)
|
||||
#define INT16_MAX (32767)
|
||||
#define INT32_MAX (2147483647)
|
||||
#define INT64_MAX (9223372036854775807)
|
||||
#define INT64_MAX (9223372036854775807LL)
|
||||
|
||||
#define UINT8_MAX (255)
|
||||
#define UINT16_MAX (65535)
|
||||
|
Reference in New Issue
Block a user