mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
eaa8113bf0
The libc.a for alpha, s390, and sparcv9 does not provide copysignf64x, copysignf128, frexpf64x, frexpf128, modff64x, and modff128. Checked with a static build for the affected ABIs. Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
11 lines
297 B
C
11 lines
297 B
C
#include <math_ldbl_opt.h>
|
|
#include <libm-alias-ldouble.h>
|
|
#if IS_IN (libc) && defined SHARED
|
|
# undef libm_alias_ldouble
|
|
# define libm_alias_ldouble(from, to)
|
|
#endif
|
|
#include <sysdeps/ieee754/ldbl-128/s_modfl.c>
|
|
#if IS_IN (libc) && defined SHARED
|
|
long_double_symbol (libc, __modfl, modfl);
|
|
#endif
|