diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-04-04 20:09:50 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-04-04 20:09:50 -0400 |
commit | f77bab5933071c46edc3da22b8c344533dd5fca3 (patch) | |
tree | 66e1ffb24d5ccc3d1845cac2306456894aa768aa /arch | |
parent | c7af2710007865861e789b29e803f0f55deba93f (diff) | |
download | musl-f77bab5933071c46edc3da22b8c344533dd5fca3.tar.gz musl-f77bab5933071c46edc3da22b8c344533dd5fca3.tar.xz musl-f77bab5933071c46edc3da22b8c344533dd5fca3.zip |
fix type issues in stdint.h so underlying types of 64-bit types match ABI
Diffstat (limited to 'arch')
-rwxr-xr-x | arch/arm/bits/alltypes.h.sh | 3 | ||||
-rwxr-xr-x | arch/i386/bits/alltypes.h.sh | 3 | ||||
-rwxr-xr-x | arch/microblaze/bits/alltypes.h.sh | 3 | ||||
-rwxr-xr-x | arch/mips/bits/alltypes.h.sh | 3 | ||||
-rwxr-xr-x | arch/powerpc/bits/alltypes.h.sh | 3 | ||||
-rwxr-xr-x | arch/x86_64/bits/alltypes.h.sh | 3 |
6 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/bits/alltypes.h.sh b/arch/arm/bits/alltypes.h.sh index abe782d9..c1db1a0c 100755 --- a/arch/arm/bits/alltypes.h.sh +++ b/arch/arm/bits/alltypes.h.sh @@ -56,6 +56,9 @@ TYPEDEF uint64_t uint_fast64_t; TYPEDEF long intptr_t; TYPEDEF unsigned long uintptr_t; +TYPEDEF long long intmax_t; +TYPEDEF unsigned long long uintmax_t; + TYPEDEF float float_t; TYPEDEF double double_t; diff --git a/arch/i386/bits/alltypes.h.sh b/arch/i386/bits/alltypes.h.sh index 579aa1af..aec73731 100755 --- a/arch/i386/bits/alltypes.h.sh +++ b/arch/i386/bits/alltypes.h.sh @@ -64,6 +64,9 @@ TYPEDEF uint64_t uint_fast64_t; TYPEDEF long intptr_t; TYPEDEF unsigned long uintptr_t; +TYPEDEF long long intmax_t; +TYPEDEF unsigned long long uintmax_t; + #if defined(__FLT_EVAL_METHOD__) && __FLT_EVAL_METHOD__ == 0 TYPEDEF float float_t; TYPEDEF double double_t; diff --git a/arch/microblaze/bits/alltypes.h.sh b/arch/microblaze/bits/alltypes.h.sh index 6ddd0823..23f12d8e 100755 --- a/arch/microblaze/bits/alltypes.h.sh +++ b/arch/microblaze/bits/alltypes.h.sh @@ -56,6 +56,9 @@ TYPEDEF uint64_t uint_fast64_t; TYPEDEF long intptr_t; TYPEDEF unsigned long uintptr_t; +TYPEDEF long long intmax_t; +TYPEDEF unsigned long long uintmax_t; + TYPEDEF float float_t; TYPEDEF double double_t; diff --git a/arch/mips/bits/alltypes.h.sh b/arch/mips/bits/alltypes.h.sh index 6ddd0823..23f12d8e 100755 --- a/arch/mips/bits/alltypes.h.sh +++ b/arch/mips/bits/alltypes.h.sh @@ -56,6 +56,9 @@ TYPEDEF uint64_t uint_fast64_t; TYPEDEF long intptr_t; TYPEDEF unsigned long uintptr_t; +TYPEDEF long long intmax_t; +TYPEDEF unsigned long long uintmax_t; + TYPEDEF float float_t; TYPEDEF double double_t; diff --git a/arch/powerpc/bits/alltypes.h.sh b/arch/powerpc/bits/alltypes.h.sh index 417e2919..7d3cdc36 100755 --- a/arch/powerpc/bits/alltypes.h.sh +++ b/arch/powerpc/bits/alltypes.h.sh @@ -56,6 +56,9 @@ TYPEDEF uint64_t uint_fast64_t; TYPEDEF int intptr_t; TYPEDEF unsigned uintptr_t; +TYPEDEF long long intmax_t; +TYPEDEF unsigned long long uintmax_t; + TYPEDEF float float_t; TYPEDEF double double_t; diff --git a/arch/x86_64/bits/alltypes.h.sh b/arch/x86_64/bits/alltypes.h.sh index 62e77ac9..c5e54aab 100755 --- a/arch/x86_64/bits/alltypes.h.sh +++ b/arch/x86_64/bits/alltypes.h.sh @@ -55,6 +55,9 @@ TYPEDEF uint64_t uint_fast64_t; TYPEDEF long intptr_t; TYPEDEF unsigned long uintptr_t; +TYPEDEF long intmax_t; +TYPEDEF unsigned long uintmax_t; + TYPEDEF float float_t; TYPEDEF double double_t; |