diff options
Diffstat (limited to 'sysdeps/ieee754/flt-32/s_totalordermagf.c')
-rw-r--r-- | sysdeps/ieee754/flt-32/s_totalordermagf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_totalordermagf.c b/sysdeps/ieee754/flt-32/s_totalordermagf.c index cac7601e12..9aaa6c4231 100644 --- a/sysdeps/ieee754/flt-32/s_totalordermagf.c +++ b/sysdeps/ieee754/flt-32/s_totalordermagf.c @@ -22,7 +22,7 @@ #include <stdint.h> int -totalordermagf (float x, float y) +__totalordermagf (float x, float y) { uint32_t ix, iy; GET_FLOAT_WORD (ix, x); @@ -42,3 +42,4 @@ totalordermagf (float x, float y) #endif return ix <= iy; } +weak_alias (__totalordermagf, totalordermagf) |