* include/stdint.h: Correctly define INT64_MAX.

This commit is contained in:
Christopher Faylor 2003-10-28 15:13:06 +00:00
parent b19cda7bab
commit 61c4ca410f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-10-28 Christopher Faylor <cgf@redhat.com>
* include/stdint.h: Correctly define INT64_MAX.
2003-10-27 Thomas Pfaff <tpfaff@gmx.net>
* thread.h (fast_mutex::init): Initialize lock_counter.

View File

@ -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)