summaryrefslogtreecommitdiff
path: root/math/w_remainder_compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_remainder_compat.c')
-rw-r--r--math/w_remainder_compat.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/math/w_remainder_compat.c b/math/w_remainder_compat.c
index 68e322efdc..2b7f8620e8 100644
--- a/math/w_remainder_compat.c
+++ b/math/w_remainder_compat.c
@@ -19,6 +19,7 @@
#include <math.h>
#include <math_private.h>
#include <math-svid-compat.h>
+#include <libm-alias-double.h>
#if LIBM_SVID_COMPAT
@@ -33,11 +34,9 @@ __remainder (double x, double y)
return __ieee754_remainder (x, y);
}
-weak_alias (__remainder, remainder)
+libm_alias_double (__remainder, remainder)
weak_alias (__remainder, drem)
# ifdef NO_LONG_DOUBLE
-strong_alias (__remainder, __remainderl)
-weak_alias (__remainder, remainderl)
weak_alias (__remainder, dreml)
# endif
#endif