Ignore MAP_VARIABLE in tst-mman-consts.py
[glibc.git] / sysdeps / arm / bits / endianness.h
blob2d671fff661e1546fd1cf3ac32df72c82b947ab3
1 #ifndef _BITS_ENDIANNESS_H
2 #define _BITS_ENDIANNESS_H 1
4 #ifndef _BITS_ENDIAN_H
5 # error "Never use <bits/endianness.h> directly; include <endian.h> instead."
6 #endif
8 /* ARM has selectable endianness. */
9 #ifdef __ARMEB__
10 #define __BYTE_ORDER __BIG_ENDIAN
11 #else
12 #define __BYTE_ORDER __LITTLE_ENDIAN
13 #endif
15 #endif /* bits/endianness.h */