diff options
Diffstat (limited to 'math/math_private.h')
-rw-r--r-- | math/math_private.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/math/math_private.h b/math/math_private.h index 6d51930230..906b1dabba 100644 --- a/math/math_private.h +++ b/math/math_private.h @@ -34,7 +34,7 @@ /* A union which permits us to convert between a double and two 32 bit ints. */ -#if BYTE_ORDER == BIG_ENDIAN +#if __FLOAT_WORD_ORDER == BIG_ENDIAN typedef union { @@ -48,7 +48,7 @@ typedef union #endif -#if BYTE_ORDER == LITTLE_ENDIAN +#if __FLOAT_WORD_ORDER == LITTLE_ENDIAN typedef union { @@ -150,7 +150,7 @@ do { \ /* A union which permits us to convert between a long double and three 32 bit ints. */ -#if BYTE_ORDER == BIG_ENDIAN +#if __FLOAT_WORD_ORDER == BIG_ENDIAN typedef union { @@ -166,7 +166,7 @@ typedef union #endif -#if BYTE_ORDER == LITTLE_ENDIAN +#if __FLOAT_WORD_ORDER == LITTLE_ENDIAN typedef union { |