diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-96/s_totalorderl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-96/s_totalorderl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-96/s_totalorderl.c b/sysdeps/ieee754/ldbl-96/s_totalorderl.c index 2d3b3b7d05..b94842f73b 100644 --- a/sysdeps/ieee754/ldbl-96/s_totalorderl.c +++ b/sysdeps/ieee754/ldbl-96/s_totalorderl.c @@ -19,6 +19,7 @@ #include <float.h> #include <math.h> #include <math_private.h> +#include <libm-alias-ldouble.h> #include <nan-high-order-bit.h> #include <stdint.h> @@ -55,4 +56,4 @@ __totalorderl (long double x, long double y) ly ^= y_sign; return expx < expy || (expx == expy && (hx < hy || (hx == hy && lx <= ly))); } -weak_alias (__totalorderl, totalorderl) +libm_alias_ldouble (__totalorder, totalorder) |