Remove building with NOCRYPTO option
[minix.git] / sys / arch / arm / include / endian_machdep.h
blob1f2d2caf5cf2e7e95abeba58613953f5984df506
1 /* $NetBSD: endian_machdep.h,v 1.9 2014/01/29 01:03:13 matt Exp $ */
3 /* __ARMEB__ or __AARCH64EB__ is predefined when building big-endian ARM. */
4 #if defined(__ARMEB__) || defined(__AARCH64EB__)
5 #define _BYTE_ORDER _BIG_ENDIAN
6 #else
7 #define _BYTE_ORDER _LITTLE_ENDIAN
8 #endif