mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
13 lines
No EOL
339 B
C
Vendored
13 lines
No EOL
339 B
C
Vendored
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _XTENSA_BYTEORDER_H
|
|
#define _XTENSA_BYTEORDER_H
|
|
|
|
#ifdef __XTENSA_EL__
|
|
#include <linux/byteorder/little_endian.h>
|
|
#elif defined(__XTENSA_EB__)
|
|
#include <linux/byteorder/big_endian.h>
|
|
#else
|
|
# error processor byte order undefined!
|
|
#endif
|
|
|
|
#endif /* _XTENSA_BYTEORDER_H */ |