mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-06 12:00:24 +08:00
10 lines
302 B
C
10 lines
302 B
C
#include <math_ldbl_opt.h>
|
|
#include <sysdeps/ieee754/dbl-64/s_copysign.c>
|
|
#ifdef IS_IN_libm
|
|
# if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
|
|
compat_symbol (libm, __copysign, copysignl, GLIBC_2_0);
|
|
# endif
|
|
#elif LONG_DOUBLE_COMPAT(libc, GLIBC_2_0)
|
|
compat_symbol (libc, __copysign, copysignl, GLIBC_2_0);
|
|
#endif
|