mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
13 lines
214 B
C
13 lines
214 B
C
|
#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
|