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
Sync usage with man page.
[netbsd-mini2440.git]
/
sys
/
arch
/
arm
/
include
/
endian_machdep.h
blob
0465b1b6d7b479a1213cf51270925bb42c446338
1
/* $NetBSD: endian_machdep.h,v 1.7 2005/12/11 12:16:47 christos 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