home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue4 / SDL / gcc346 / !gcc / include / unixlib / h / math_private < prev    next >
Encoding:
Text File  |  2006-09-17  |  436 b   |  20 lines

  1. #include <endian.h>
  2. #include <sys/types.h>
  3. #include <internal/math.h>
  4.  
  5. /* IBM MathLib flags.  */
  6.  
  7. #if __FLOAT_WORD_ORDER == __LITTLE_ENDIAN
  8. /* The soft-float ABI represents FP words in little-endian format.  */
  9. #define LITTLE_ENDI 1
  10. #define HIGH_HALF 1
  11. #define LOW_HALF 0
  12. #else
  13. /* The ARM FPA represents FP words in big-endian format with the
  14.    word-order swapped.  */
  15. #define BIG_ENDI 1
  16. #define HIGH_HALF 0
  17. #define LOW_HALF 1
  18. #endif
  19.  
  20.