aboutsummaryrefslogtreecommitdiff
path: root/tools/include/asm/byteorder.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/include/asm/byteorder.h')
-rw-r--r--tools/include/asm/byteorder.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/include/asm/byteorder.h b/tools/include/asm/byteorder.h
new file mode 100644
index 0000000000..8e7d779d7d
--- /dev/null
+++ b/tools/include/asm/byteorder.h
@@ -0,0 +1,12 @@
+#ifndef __ASM_BYTEORDER_H
+#define __ASM_BYTEORDER_H
+
+#include <endian.h>
+
+#if __BYTE_ORDER == __LITTLE_ENDIAN
+#include <linux/byteorder/little_endian.h>
+#else
+#include <linux/byteorder/big_endian.h>
+#endif
+
+#endif