diff options
Diffstat (limited to 'sysdeps/aarch64/fpu/s_roundf.c')
-rw-r--r-- | sysdeps/aarch64/fpu/s_roundf.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sysdeps/aarch64/fpu/s_roundf.c b/sysdeps/aarch64/fpu/s_roundf.c index ef6f672c7d..66c8ee6d09 100644 --- a/sysdeps/aarch64/fpu/s_roundf.c +++ b/sysdeps/aarch64/fpu/s_roundf.c @@ -16,6 +16,12 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ -#define FUNC roundf -#define INSN "frinta" -#include <s_frintf.c> +#include <math.h> + +float +__roundf (float x) +{ + return __builtin_roundf (x); +} + +weak_alias (__roundf, roundf) |