sparc64: Remove fcopysign{f} implementation
[glibc.git] / sysdeps / nios2 / bits / endianness.h
blob87e66ebd716bed59d4380b180eb145d76ff9acd7
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 /* Nios II has selectable endianness. */
9 #ifdef __nios2_big_endian__
10 # define __BYTE_ORDER __BIG_ENDIAN
11 #endif
12 #ifdef __nios2_little_endian__
13 # define __BYTE_ORDER __LITTLE_ENDIAN
14 #endif
16 #endif /* bits/endianness.h */