diff options
Diffstat (limited to 'sysdeps/ieee754/flt-32/s_roundevenf.c')
-rw-r--r-- | sysdeps/ieee754/flt-32/s_roundevenf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_roundevenf.c b/sysdeps/ieee754/flt-32/s_roundevenf.c index 4a8c2624bb..d1661569ec 100644 --- a/sysdeps/ieee754/flt-32/s_roundevenf.c +++ b/sysdeps/ieee754/flt-32/s_roundevenf.c @@ -26,7 +26,7 @@ #define MAX_EXP (2 * BIAS + 1) float -roundevenf (float x) +__roundevenf (float x) { uint32_t ix, ux; GET_FLOAT_WORD (ix, x); @@ -66,3 +66,4 @@ roundevenf (float x) SET_FLOAT_WORD (x, ix); return x; } +weak_alias (__roundevenf, roundevenf) |