summaryrefslogtreecommitdiff
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, 0 insertions, 17 deletions
diff --git a/sysdeps/libm-ieee754/w_cabsf.c b/sysdeps/libm-ieee754/w_cabsf.c
deleted file mode 100644
index 20ff5b7744..0000000000
--- a/sysdeps/libm-ieee754/w_cabsf.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * 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)