diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_totalordermagl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_totalordermagl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_totalordermagl.c b/sysdeps/ieee754/ldbl-128/s_totalordermagl.c index 41b969d811..11b58ef3d1 100644 --- a/sysdeps/ieee754/ldbl-128/s_totalordermagl.c +++ b/sysdeps/ieee754/ldbl-128/s_totalordermagl.c @@ -22,7 +22,7 @@ #include <stdint.h> int -totalordermagl (_Float128 x, _Float128 y) +__totalordermagl (_Float128 x, _Float128 y) { uint64_t hx, hy; uint64_t lx, ly; @@ -46,3 +46,4 @@ totalordermagl (_Float128 x, _Float128 y) #endif return hx < hy || (hx == hy && lx <= ly); } +weak_alias (__totalordermagl, totalordermagl) |