math_ldbl_opt.h 855 B

1234567891011121314151617
  1. /* -mlong-double-64 compatibility mode macros. Stub version.
  2. These macros are used by some math/ and sysdeps/ieee754/ code.
  3. These are the generic definitions for when no funny business is going on.
  4. sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h defines them differently
  5. for platforms where compatibility symbols are required for a previous
  6. ABI that defined long double functions as aliases for the double code. */
  7. #include <shlib-compat.h>
  8. #define LONG_DOUBLE_COMPAT(lib, introduced) 0
  9. #define long_double_symbol(lib, local, symbol)
  10. #define ldbl_hidden_def(local, name) libc_hidden_def (name)
  11. #define ldbl_strong_alias(name, aliasname) strong_alias (name, aliasname)
  12. #define ldbl_weak_alias(name, aliasname) weak_alias (name, aliasname)
  13. #define ldbl_compat_symbol(lib, local, symbol, version) \
  14. compat_symbol (lib, local, symbol, version)