diff options
Diffstat (limited to 'libm/powerpc/s_round.c')
-rw-r--r-- | libm/powerpc/s_round.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libm/powerpc/s_round.c b/libm/powerpc/s_round.c index 81f4d0fec..a0f72ebe3 100644 --- a/libm/powerpc/s_round.c +++ b/libm/powerpc/s_round.c @@ -1,10 +1,11 @@ #include <limits.h> #include <math.h> +#include <endian.h> typedef union { struct { -#if defined(__BIG_ENDIAN__) +#if (__BYTE_ORDER == __BIG_ENDIAN) unsigned long int hi; unsigned long int lo; #else |