1*31e40c8cSsimonb /*	$NetBSD: endian_machdep.h,v 1.1 2002/03/07 14:44:00 simonb Exp $	*/
2*31e40c8cSsimonb 
3*31e40c8cSsimonb #if defined(__MIPSEB__)
4*31e40c8cSsimonb #define	_BYTE_ORDER	_BIG_ENDIAN
5*31e40c8cSsimonb #elif defined(__MIPSEL__)
6*31e40c8cSsimonb #define	_BYTE_ORDER	_LITTLE_ENDIAN
7*31e40c8cSsimonb #else
8*31e40c8cSsimonb #error neither __MIPSEL__ nor __MIPSEB__ are defined.
9*31e40c8cSsimonb #endif
10*31e40c8cSsimonb 
11*31e40c8cSsimonb #include <mips/endian_machdep.h>
12