OSDN Git Service

* include/stdint.h: Correctly define INT64_MAX.
authorcgf <cgf>
Tue, 28 Oct 2003 15:13:06 +0000 (15:13 +0000)
committercgf <cgf>
Tue, 28 Oct 2003 15:13:06 +0000 (15:13 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/include/stdint.h

index 0ad9a78..1100570 100644 (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.
index 03f1cf0..0333f15 100644 (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)