diff options
Diffstat (limited to 'sysdeps/ieee754/flt-32/s_totalorderf.c')
-rw-r--r-- | sysdeps/ieee754/flt-32/s_totalorderf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_totalorderf.c b/sysdeps/ieee754/flt-32/s_totalorderf.c index 5d65420c66..adae207ed8 100644 --- a/sysdeps/ieee754/flt-32/s_totalorderf.c +++ b/sysdeps/ieee754/flt-32/s_totalorderf.c @@ -18,6 +18,7 @@ #include <math.h> #include <math_private.h> +#include <libm-alias-float.h> #include <nan-high-order-bit.h> #include <stdint.h> @@ -44,4 +45,4 @@ __totalorderf (float x, float y) iy ^= iy_sign >> 1; return ix <= iy; } -weak_alias (__totalorderf, totalorderf) +libm_alias_float (__totalorder, totalorder) |