Blame sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c

Packit 6c4009
#include <math_ldbl_opt.h>
Packit 6c4009
#undef weak_alias
Packit 6c4009
#define weak_alias(n,a)
Packit 6c4009
#include <math/w_remainderl_compat.c>
Packit 6c4009
#if LIBM_SVID_COMPAT
Packit 6c4009
/* If ldbl-opt is used without special versioning for remainderl being
Packit 6c4009
   required, the generic code does not define remainderl because of
Packit 6c4009
   the undefine and redefine of weak_alias above.  In any case, that
Packit 6c4009
   undefine and redefine mean _FloatN / _FloatNx aliases have not been
Packit 6c4009
   defined.  */
Packit 6c4009
# undef weak_alias
Packit 6c4009
# define weak_alias(name, aliasname) _weak_alias (name, aliasname)
Packit 6c4009
# if !LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)
Packit 6c4009
weak_alias (__remainderl, remainderl)
Packit 6c4009
# endif
Packit 6c4009
strong_alias (__remainderl, __dreml)
Packit 6c4009
long_double_symbol (libm, __dreml, dreml);
Packit 6c4009
libm_alias_ldouble_other (__remainder, remainder)
Packit 6c4009
#endif