diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-26 07:32:44 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-26 07:32:44 +0000 |
commit | 0af5e8402b92d3fee02d6759c6de7444929f3e8d (patch) | |
tree | 553978739238769ae7ae95ec5304ba30bde4069b /libc/sysdeps/linux/arm/bits/endian.h | |
parent | cf4328b16efe844461420da58f4f0b0f75964418 (diff) |
Add in arm specific bits.
Diffstat (limited to 'libc/sysdeps/linux/arm/bits/endian.h')
-rw-r--r-- | libc/sysdeps/linux/arm/bits/endian.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/arm/bits/endian.h b/libc/sysdeps/linux/arm/bits/endian.h new file mode 100644 index 000000000..5e54cc753 --- /dev/null +++ b/libc/sysdeps/linux/arm/bits/endian.h @@ -0,0 +1,12 @@ +/* ARM is (usually) little-endian but with a big-endian FPU. */ + +#ifndef _ENDIAN_H +# error "Never use <bits/endian.h> directly; include <endian.h> instead." +#endif + +#ifdef __ARMEB__ +#define __BYTE_ORDER __BIG_ENDIAN +#else +#define __BYTE_ORDER __LITTLE_ENDIAN +#endif +#define __FLOAT_WORD_ORDER __BIG_ENDIAN |