wordsize.h 451 B

1234567891011121314
  1. /* Determine the wordsize from the preprocessor defines. */
  2. #define __WORDSIZE 32
  3. #if !defined __NO_LONG_DOUBLE_MATH && !defined __LONG_DOUBLE_MATH_OPTIONAL
  4. /* Signal the glibc ABI didn't used to have a `long double'.
  5. The changes all the `long double' function variants to be redirects
  6. to the double functions. */
  7. # define __LONG_DOUBLE_MATH_OPTIONAL 1
  8. # ifndef __LONG_DOUBLE_128__
  9. # define __NO_LONG_DOUBLE_MATH 1
  10. # endif
  11. #endif