mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-07 21:19:47 -04:00
9 lines
276 B
C
9 lines
276 B
C
/* $NetBSD: endian_machdep.h,v 1.9 2014/01/29 01:03:13 matt Exp $ */
|
|
|
|
/* __ARMEB__ or __AARCH64EB__ is predefined when building big-endian ARM. */
|
|
#if defined(__ARMEB__) || defined(__AARCH64EB__)
|
|
#define _BYTE_ORDER _BIG_ENDIAN
|
|
#else
|
|
#define _BYTE_ORDER _LITTLE_ENDIAN
|
|
#endif
|