diff options
author | Christopher Faylor <me@cgf.cx> | 2003-10-28 15:13:06 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-10-28 15:13:06 +0000 |
commit | 61c4ca410f77d0b6f22e0293519ade770597c0f7 (patch) | |
tree | 78092b21e94f622cc98c40e19b1fea22a50b191d /winsup/cygwin/include/stdint.h | |
parent | b19cda7bab11229ef6723dc2c7b5511caac1ac88 (diff) | |
download | cygnal-61c4ca410f77d0b6f22e0293519ade770597c0f7.tar.gz cygnal-61c4ca410f77d0b6f22e0293519ade770597c0f7.tar.bz2 cygnal-61c4ca410f77d0b6f22e0293519ade770597c0f7.zip |
* include/stdint.h: Correctly define INT64_MAX.
Diffstat (limited to 'winsup/cygwin/include/stdint.h')
-rw-r--r-- | winsup/cygwin/include/stdint.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |