diff options
Diffstat (limited to 'newlib/libm/math/wf_cabs.c')
-rw-r--r-- | newlib/libm/math/wf_cabs.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/newlib/libm/math/wf_cabs.c b/newlib/libm/math/wf_cabs.c deleted file mode 100644 index c3ed0ca..0000000 --- a/newlib/libm/math/wf_cabs.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - * cabsf() wrapper for hypotf(). - * - * Written by J.T. Conklin, <jtc@wimsey.com> - * Placed into the Public Domain, 1994. - */ - -#include "fdlibm.h" - -struct complex { - float x; - float y; -}; - -float -cabsf(z) - struct complex z; -{ - return hypotf(z.x, z.y); -} |