Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-10-28 18:13:06 +0300
committerChristopher Faylor <me@cgf.cx>2003-10-28 18:13:06 +0300
commit61c4ca410f77d0b6f22e0293519ade770597c0f7 (patch)
tree78092b21e94f622cc98c40e19b1fea22a50b191d /winsup
parentb19cda7bab11229ef6723dc2c7b5511caac1ac88 (diff)
* include/stdint.h: Correctly define INT64_MAX.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/include/stdint.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 0ad9a78ce..1100570c9 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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.
diff --git a/winsup/cygwin/include/stdint.h b/winsup/cygwin/include/stdint.h
index 03f1cf0d3..0333f154c 100644
--- a/winsup/cygwin/include/stdint.h
+++ b/winsup/cygwin/include/stdint.h
@@ -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)