Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / sbmips / include / endian_machdep.h
blob1d47febb6813c06af93935d2ce01d3f4ef736490
1 /* $NetBSD$ */
3 #if defined(__MIPSEB__)
4 #define _BYTE_ORDER _BIG_ENDIAN
5 #elif defined(__MIPSEL__)
6 #define _BYTE_ORDER _LITTLE_ENDIAN
7 #else
8 #error neither __MIPSEL__ nor __MIPSEB__ are defined.
9 #endif
11 #include <mips/endian_machdep.h>