diff options
Diffstat (limited to 'sysdeps/aarch64/fpu/s_llround.c')
-rw-r--r-- | sysdeps/aarch64/fpu/s_llround.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/aarch64/fpu/s_llround.c b/sysdeps/aarch64/fpu/s_llround.c index 2902946bcd..88d1956fa5 100644 --- a/sysdeps/aarch64/fpu/s_llround.c +++ b/sysdeps/aarch64/fpu/s_llround.c @@ -17,6 +17,7 @@ <http://www.gnu.org/licenses/>. */ #include <math.h> +#include <libm-alias-double.h> long long int __llround (double x) @@ -24,4 +25,4 @@ __llround (double x) return __builtin_llround (x); } -weak_alias (__llround, llround) +libm_alias_double (__llround, llround) |