]> git.proxmox.com Git - mirror_edk2.git/blob - StdLib/Include/Arm/machine/endian_machdep.h
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / StdLib / Include / Arm / machine / endian_machdep.h
1 /* $NetBSD: endian_machdep.h,v 1.8 2006/01/30 21:52:38 dsl Exp $ */
2
3 /* GCC predefines __ARMEB__ when building for big-endian ARM. */
4 #ifdef __ARMEB__
5 #define _BYTE_ORDER _BIG_ENDIAN
6 #else
7 #define _BYTE_ORDER _LITTLE_ENDIAN
8 #endif