From: Erik van der Kouwe Date: Fri, 22 Jan 2010 10:45:05 +0000 (+0000) Subject: Make int64 constants available under GCC X-Git-Tag: v3.1.6~49 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=4dfe5f49baefb42b59ea6d5fb1495523fa8ac777;p=minix.git Make int64 constants available under GCC --- diff --git a/include/stdint.h b/include/stdint.h index 329fde88b..d696c494e 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -43,14 +43,14 @@ typedef u64_t uint64_t; typedef int8_t int_least8_t; typedef int16_t int_least16_t; typedef int32_t int_least32_t; -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) typedef int64_t int_least64_t; #endif typedef uint8_t uint_least8_t; typedef uint16_t uint_least16_t; typedef uint32_t uint_least32_t; -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) typedef uint64_t uint_least64_t; #endif @@ -63,7 +63,7 @@ typedef int32_t int_fast8_t; typedef int32_t int_fast16_t; #endif typedef int32_t int_fast32_t; -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) typedef int64_t int_fast64_t; #endif @@ -75,7 +75,7 @@ typedef uint32_t uint_fast8_t; typedef uint32_t uint_fast16_t; #endif typedef uint32_t uint_fast32_t; -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) typedef uint64_t uint_fast64_t; #endif @@ -99,49 +99,49 @@ typedef unsigned long uintmax_t; #define INT8_MIN (-INT8_MAX-1) #define INT16_MIN (-INT16_MAX-1) #define INT32_MIN (-INT32_MAX-1) -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define INT64_MIN (-INT64_MAX-1) #endif #define INT8_MAX 127 #define INT16_MAX 32767 #define INT32_MAX 2147483647 -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define INT64_MAX 9223372036854775807LL #endif #define UINT8_MAX 255 #define UINT16_MAX 65535 #define UINT32_MAX 4294967295U -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define UINT64_MAX 18446744073709551615ULL #endif #define INT_LEAST8_MIN INT8_MIN #define INT_LEAST16_MIN INT16_MIN #define INT_LEAST32_MIN INT32_MIN -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define INT_LEAST64_MIN INT64_MIN #endif #define INT_LEAST8_MAX INT8_MAX #define INT_LEAST16_MAX INT16_MAX #define INT_LEAST32_MAX INT32_MAX -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define INT_LEAST64_MAX INT64_MAX #endif #define UINT_LEAST8_MAX UINT8_MAX #define UINT_LEAST16_MAX UINT16_MAX #define UINT_LEAST32_MAX UINT32_MAX -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define UINT_LEAST64_MAX UINT64_MAX #endif #define INT_FAST8_MIN (-INT_FAST8_MAX-1) #define INT_FAST16_MIN (-INT_FAST16_MAX-1) #define INT_FAST32_MIN INT32_MIN -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define INT_FAST64_MIN INT64_MIN #endif @@ -153,7 +153,7 @@ typedef unsigned long uintmax_t; #define INT_FAST16_MAX INT32_MAX #endif #define INT_FAST32_MAX INT32_MAX -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define INT_FAST64_MAX INT64_MAX #endif @@ -165,7 +165,7 @@ typedef unsigned long uintmax_t; #define UINT_FAST16_MAX UINT32_MAX #endif #define UINT_FAST32_MAX UINT32_MAX -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define UINT_FAST64_MAX UINT64_MAX #endif @@ -196,7 +196,7 @@ typedef unsigned long uintmax_t; #else #define INT32_C(c) c #endif -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define INT64_C(c) __CONCAT(c,l) #endif @@ -207,11 +207,11 @@ typedef unsigned long uintmax_t; #else #define UINT32_C(c) __CONCAT(c,u) #endif -#if _WORD_SIZE > 2 && __L64 +#if defined(__LONG_LONG_SUPPORTED) || (_WORD_SIZE > 2 && __L64) #define UINT64_C(c) __CONCAT(c,lu) #endif -#if _WORD_SIZE == 2 || !__L64 +#if !defined(__LONG_LONG_SUPPORTED) && !(_WORD_SIZE > 2 && __L64) #define INTMAX_C(c) INT32_C(c) #define UINTMAX_C(c) UINT32_C(c) #else