diff options
Diffstat (limited to 'sysdeps/aarch64/fpu/s_lroundf.c')
-rw-r--r-- | sysdeps/aarch64/fpu/s_lroundf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/aarch64/fpu/s_lroundf.c b/sysdeps/aarch64/fpu/s_lroundf.c index baf06938be..fbf020286d 100644 --- a/sysdeps/aarch64/fpu/s_lroundf.c +++ b/sysdeps/aarch64/fpu/s_lroundf.c @@ -17,6 +17,7 @@ <http://www.gnu.org/licenses/>. */ #include <math.h> +#include <libm-alias-float.h> long int __lroundf (float x) @@ -24,4 +25,4 @@ __lroundf (float x) return __builtin_lroundf (x); } -weak_alias (__lroundf, lroundf) +libm_alias_float (__lround, lround) |