diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_totalorderl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_totalorderl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_totalorderl.c b/sysdeps/ieee754/ldbl-128/s_totalorderl.c index 78876070c3..87a494a832 100644 --- a/sysdeps/ieee754/ldbl-128/s_totalorderl.c +++ b/sysdeps/ieee754/ldbl-128/s_totalorderl.c @@ -18,6 +18,7 @@ #include <math.h> #include <math_private.h> +#include <libm-alias-ldouble.h> #include <nan-high-order-bit.h> #include <stdint.h> @@ -52,4 +53,4 @@ __totalorderl (_Float128 x, _Float128 y) ly ^= hy_sign; return hx < hy || (hx == hy && lx <= ly); } -weak_alias (__totalorderl, totalorderl) +libm_alias_ldouble (__totalorder, totalorder) |