summaryrefslogtreecommitdiff
path: root/arch/powerpc
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-04-04 20:09:50 -0400
committerRich Felker <dalias@aerifal.cx>2013-04-04 20:09:50 -0400
commitf77bab5933071c46edc3da22b8c344533dd5fca3 (patch)
tree66e1ffb24d5ccc3d1845cac2306456894aa768aa /arch/powerpc
parentc7af2710007865861e789b29e803f0f55deba93f (diff)
downloadmusl-f77bab5933071c46edc3da22b8c344533dd5fca3.tar.gz
fix type issues in stdint.h so underlying types of 64-bit types match ABI
Diffstat (limited to 'arch/powerpc')
-rwxr-xr-xarch/powerpc/bits/alltypes.h.sh3
1 files changed, 3 insertions, 0 deletions
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;