aboutsummaryrefslogtreecommitdiff
path: root/tools/include/asm/byteorder.h
blob: 8e7d779d7dd015fca5310f0c251a99f3d26df026 (plain)
1
2
3
4
5
6
7
8
9
10
11
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