summaryrefslogtreecommitdiffstats
path: root/newlib/libm/math/w_cabs.c
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2010-10-08 10:49:28 +0000
committerCorinna Vinschen <corinna@vinschen.de>2010-10-08 10:49:28 +0000
commit421648d31ce79e3673875e5e3b7932e5e26e66b0 (patch)
tree17789dfe1cfa1e70931f9274e9ce21906dd49688 /newlib/libm/math/w_cabs.c
parent5af2a793bc8cc1a41783515ded2aee98d7e50644 (diff)
downloadcygnal-421648d31ce79e3673875e5e3b7932e5e26e66b0.tar.gz
cygnal-421648d31ce79e3673875e5e3b7932e5e26e66b0.tar.bz2
cygnal-421648d31ce79e3673875e5e3b7932e5e26e66b0.zip
* libm/math/w_cabs.c: Delete.
* libm/math/wf_cabs.c: Delete. * libm/math/Makefile.am (src): Remove w_cabs.c. (fsrc): Remove wf_cabs.c. * libm/math/Makefile.in: Regenerate.
Diffstat (limited to 'newlib/libm/math/w_cabs.c')
-rw-r--r--newlib/libm/math/w_cabs.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/newlib/libm/math/w_cabs.c b/newlib/libm/math/w_cabs.c
deleted file mode 100644
index bef76680c..000000000
--- a/newlib/libm/math/w_cabs.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * cabs() wrapper for hypot().
- *
- * Written by J.T. Conklin, <jtc@wimsey.com>
- * Placed into the Public Domain, 1994.
- */
-
-#include "fdlibm.h"
-
-struct complex {
- double x;
- double y;
-};
-
-double
-cabs(z)
- struct complex z;
-{
- return hypot(z.x, z.y);
-}