about summary refs log tree commit diff
path: root/sysdeps/or1k/bits/endianness.h
diff options
context:
space:
mode:
authorStafford Horne <shorne@gmail.com>2021-10-20 06:47:26 +0900
committerStafford Horne <shorne@gmail.com>2022-01-05 06:40:05 +0900
commit6e5964311d57c017ed0af3d87095e54805f2541e (patch)
tree4051701820df33ddd05c3451f88b475b8f5dbdfc /sysdeps/or1k/bits/endianness.h
parent9dde3a24f132090fa8f88d6eaa2bc4c48f2e942f (diff)
downloadglibc-6e5964311d57c017ed0af3d87095e54805f2541e.tar.gz
glibc-6e5964311d57c017ed0af3d87095e54805f2541e.tar.xz
glibc-6e5964311d57c017ed0af3d87095e54805f2541e.zip
or1k: ABI Implementation
This code deals with the OpenRISC ABI.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/or1k/bits/endianness.h')
-rw-r--r--sysdeps/or1k/bits/endianness.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/sysdeps/or1k/bits/endianness.h b/sysdeps/or1k/bits/endianness.h
new file mode 100644
index 0000000000..7b61d8adb7
--- /dev/null
+++ b/sysdeps/or1k/bits/endianness.h
@@ -0,0 +1,11 @@
+#ifndef _BITS_ENDIANNESS_H
+#define _BITS_ENDIANNESS_H 1
+
+#ifndef _BITS_ENDIAN_H
+# error "Never use <bits/endianness.h> directly; include <endian.h> instead."
+#endif
+
+/* OpenRISC is big-endian.  */
+#define __BYTE_ORDER __BIG_ENDIAN
+
+#endif /* bits/endianness.h */