diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-11-14 14:01:39 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-11-14 14:01:39 -0500 |
commit | c6d441e3a246370d9c459396ec22b096db93850e (patch) | |
tree | fa3d4a4ca03531ceab9e60abb50e37780fce60ed /arch/powerpc/bits/stdint.h | |
parent | c4a35f8c2a4b1a7e62a4b9e5b2748fb4fbcace79 (diff) | |
parent | 1c8eb8bad791fe9d01d0d4ab77882db634fa933d (diff) | |
download | musl-c6d441e3a246370d9c459396ec22b096db93850e.tar.gz musl-c6d441e3a246370d9c459396ec22b096db93850e.tar.xz musl-c6d441e3a246370d9c459396ec22b096db93850e.zip |
Merge remote-tracking branch 'ppc-port/ppc-squashed'
Diffstat (limited to 'arch/powerpc/bits/stdint.h')
-rw-r--r-- | arch/powerpc/bits/stdint.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/powerpc/bits/stdint.h b/arch/powerpc/bits/stdint.h new file mode 100644 index 00000000..8e21a8cb --- /dev/null +++ b/arch/powerpc/bits/stdint.h @@ -0,0 +1,23 @@ +#define INT_FAST8_MIN INT8_MIN +#define INT_FAST16_MIN INT32_MIN +#define INT_FAST32_MIN INT32_MIN +#define INT_FAST64_MIN INT64_MIN + +#define INT_FAST8_MAX INT8_MAX +#define INT_FAST16_MAX INT32_MAX +#define INT_FAST32_MAX INT32_MAX +#define INT_FAST64_MAX INT64_MAX + +#define UINT_FAST8_MAX UINT8_MAX +#define UINT_FAST16_MAX UINT32_MAX +#define UINT_FAST32_MAX UINT32_MAX +#define UINT_FAST64_MAX UINT64_MAX + +#define INTPTR_MIN INT32_MIN +#define INTPTR_MAX INT32_MAX +#define UINTPTR_MAX UINT32_MAX +#define PTRDIFF_MIN INT32_MIN +#define PTRDIFF_MAX INT32_MAX +#define SIG_ATOMIC_MIN INT32_MIN +#define SIG_ATOMIC_MAX INT32_MAX +#define SIZE_MAX UINT32_MAX |