Add Changelog ...
[glibc.git] / sysdeps / tile / bits / endian.h
blob43d94bb7a79f1c7a013418936e7cfc138a2255d4
1 /* Set endianness for tile. */
3 #ifndef _ENDIAN_H
4 # error "Never use <bits/endian.h> directly; include <endian.h> instead."
5 #endif
7 #if defined __BIG_ENDIAN__
8 # define __BYTE_ORDER __BIG_ENDIAN
9 #elif defined __LITTLE_ENDIAN__
10 # define __BYTE_ORDER __LITTLE_ENDIAN
11 #else
12 # error "Endianness not declared!!"
13 #endif