repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
custom message type for VM_INFO
[minix3.git]
/
sys
/
arch
/
arm
/
include
/
endian_machdep.h
blob
96634547e8b6641cc0050fc58ddef8c173bb4580
1
/* $NetBSD: endian_machdep.h,v 1.8 2006/01/30 21:52:38 dsl Exp $ */
2
3
/* GCC predefines __ARMEB__ when building for big-endian ARM. */
4
#ifdef __ARMEB__
5
#define _BYTE_ORDER _BIG_ENDIAN
6
#else
7
#define _BYTE_ORDER _LITTLE_ENDIAN
8
#endif