diff options
Diffstat (limited to 'libm/powerpc/s_modf.c')
-rw-r--r-- | libm/powerpc/s_modf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libm/powerpc/s_modf.c b/libm/powerpc/s_modf.c index f4344bda8..cb8338a90 100644 --- a/libm/powerpc/s_modf.c +++ b/libm/powerpc/s_modf.c @@ -45,13 +45,14 @@ #include <limits.h> #include <math.h> +#include <endian.h> #define SET_INVALID 0x01000000UL typedef union { struct { -#if defined(__BIG_ENDIAN__) +#if (__BYTE_ORDER == __BIG_ENDIAN) unsigned long int hi; unsigned long int lo; #else |