Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / evbmips / include / endian_machdep.h
blobcc9484feacbcda85aa5d23312bfcfd05d37767ad
1 /* $NetBSD: endian_machdep.h,v 1.1 2000/03/17 00:09:24 mycroft Exp $ */
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>