aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/libm-ieee754/w_cabsf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/libm-ieee754/w_cabsf.c')
-rw-r--r--sysdeps/libm-ieee754/w_cabsf.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/sysdeps/libm-ieee754/w_cabsf.c b/sysdeps/libm-ieee754/w_cabsf.c
new file mode 100644
index 0000000000..20ff5b7744
--- /dev/null
+++ b/sysdeps/libm-ieee754/w_cabsf.c
@@ -0,0 +1,17 @@
+/*
+ * cabsf() wrapper for hypotf().
+ *
+ * Written by J.T. Conklin, <jtc@wimsey.com>
+ * Placed into the Public Domain, 1994.
+ */
+
+#include "math.h"
+#include "math_private.h"
+
+float
+__cabsf(z)
+ struct __cabs_complexf z;
+{
+ return __hypotf(z.x, z.y);
+}
+weak_alias (__cabsf, cabsf)