diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_roundl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_roundl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_roundl.c b/sysdeps/ieee754/ldbl-128/s_roundl.c index 18e8b65670..cabb8a32a5 100644 --- a/sysdeps/ieee754/ldbl-128/s_roundl.c +++ b/sysdeps/ieee754/ldbl-128/s_roundl.c @@ -21,6 +21,7 @@ #include <math.h> #include <math_private.h> +#include <libm-alias-ldouble.h> _Float128 @@ -77,4 +78,4 @@ __roundl (_Float128 x) SET_LDOUBLE_WORDS64 (x, i0, i1); return x; } -weak_alias (__roundl, roundl) +libm_alias_ldouble (__round, round) |