2011-12-03 21:14:25 -05:00
|
|
|
/* Set endianness for tile. */
|
|
|
|
|
|
|
|
#ifndef _ENDIAN_H
|
|
|
|
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined __BIG_ENDIAN__
|
|
|
|
# define __BYTE_ORDER __BIG_ENDIAN
|
|
|
|
#else
|
2013-06-12 16:48:33 -04:00
|
|
|
# define __BYTE_ORDER __LITTLE_ENDIAN
|
2011-12-03 21:14:25 -05:00
|
|
|
#endif
|