custom message type for VM_INFO
[minix3.git] / sys / arch / arm / include / endian_machdep.h
blob96634547e8b6641cc0050fc58ddef8c173bb4580
1 /* $NetBSD: endian_machdep.h,v 1.8 2006/01/30 21:52:38 dsl Exp $ */
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