Welcome to mirror list, hosted at ThFree Co, Russian Federation.

endian.h « machine « arm « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54844278b077f84c53a4713f299923a22afe5d48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* ARM configuration file */

#ifndef _MACHINE_ENDIAN_H
# define _MACHINE_ENDIAN_H

#ifdef __ARMEB__
#define BYTE_ORDER BIG_ENDIAN
#else
#define BYTE_ORDER LITTLE_ENDIAN
#endif

#endif