| 1 | /*	$NetBSD: endian_machdep.h,v 1.1 2002/03/07 14:44:00 simonb Exp $	*/ |
| 2 | |
| 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 |
| 10 | |
| 11 | #include <mips/endian_machdep.h> |