* include/stdint.h: Duplicate below effort for rest of *64_*.

This commit is contained in:
Christopher Faylor 2003-10-28 16:03:52 +00:00
parent 61c4ca410f
commit a4666b3d1b
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2003-10-28 Christopher Faylor <cgf@redhat.com>
* include/stdint.h: Duplicate below effort for rest of *64_*.
2003-10-28 Christopher Faylor <cgf@redhat.com> 2003-10-28 Christopher Faylor <cgf@redhat.com>
* include/stdint.h: Correctly define INT64_MAX. * include/stdint.h: Correctly define INT64_MAX.

View File

@ -71,7 +71,7 @@ typedef unsigned long long uintmax_t;
#define INT8_MIN (-128) #define INT8_MIN (-128)
#define INT16_MIN (-32768) #define INT16_MIN (-32768)
#define INT32_MIN (-2147483647-1) #define INT32_MIN (-2147483647-1)
#define INT64_MIN (-9223372036854775808) #define INT64_MIN (-9223372036854775808LL)
#define INT8_MAX (127) #define INT8_MAX (127)
#define INT16_MAX (32767) #define INT16_MAX (32767)
@ -88,12 +88,12 @@ typedef unsigned long long uintmax_t;
#define INT_LEAST8_MIN (-128) #define INT_LEAST8_MIN (-128)
#define INT_LEAST16_MIN (-32768) #define INT_LEAST16_MIN (-32768)
#define INT_LEAST32_MIN (-2147483648) #define INT_LEAST32_MIN (-2147483648)
#define INT_LEAST64_MIN (-9223372036854775808) #define INT_LEAST64_MIN (-9223372036854775808LL)
#define INT_LEAST8_MAX (127) #define INT_LEAST8_MAX (127)
#define INT_LEAST16_MAX (32767) #define INT_LEAST16_MAX (32767)
#define INT_LEAST32_MAX (2147483647) #define INT_LEAST32_MAX (2147483647)
#define INT_LEAST64_MAX (9223372036854775807) #define INT_LEAST64_MAX (9223372036854775807LL)
#define UINT_LEAST8_MAX (255) #define UINT_LEAST8_MAX (255)
#define UINT_LEAST16_MAX (65535) #define UINT_LEAST16_MAX (65535)
@ -105,12 +105,12 @@ typedef unsigned long long uintmax_t;
#define INT_FAST8_MIN (-128) #define INT_FAST8_MIN (-128)
#define INT_FAST16_MIN (-2147483648) #define INT_FAST16_MIN (-2147483648)
#define INT_FAST32_MIN (-2147483648) #define INT_FAST32_MIN (-2147483648)
#define INT_FAST64_MIN (-9223372036854775808) #define INT_FAST64_MIN (-9223372036854775808LL)
#define INT_FAST8_MAX (127) #define INT_FAST8_MAX (127)
#define INT_FAST16_MAX (2147483647) #define INT_FAST16_MAX (2147483647)
#define INT_FAST32_MAX (2147483647) #define INT_FAST32_MAX (2147483647)
#define INT_FAST64_MAX (9223372036854775807) #define INT_FAST64_MAX (9223372036854775807LL)
#define UINT_FAST8_MAX (255) #define UINT_FAST8_MAX (255)
#define UINT_FAST16_MAX (4294967295UL) #define UINT_FAST16_MAX (4294967295UL)