1 /* Set endianness for tile.  */
2 
3 #ifndef _ENDIAN_H
4 # error "Never use <bits/endian.h> directly; include <endian.h> instead."
5 #endif
6 
7 #if defined __BIG_ENDIAN__
8 # define __BYTE_ORDER __BIG_ENDIAN
9 #else
10 # define __BYTE_ORDER __LITTLE_ENDIAN
11 #endif
12