repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
sys
/
arch
/
sbmips
/
include
/
endian_machdep.h
blob
1d47febb6813c06af93935d2ce01d3f4ef736490
1
/* $NetBSD$ */
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>