diff options
| author | David Schultz <das@FreeBSD.org> | 2008-03-30 20:02:03 +0000 |
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2008-03-30 20:02:03 +0000 |
| commit | 2264157a42d28b86c281337cfd84c3155ec14bc1 (patch) | |
| tree | 233e4392d36fc0104a37f5916428afdec0bb4499 /lib | |
| parent | d23166b0152645e2d26b3a27cb9d164a39091833 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/msun/src/w_cabsl.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/msun/src/w_cabsl.c b/lib/msun/src/w_cabsl.c new file mode 100644 index 000000000000..b715e0c340d8 --- /dev/null +++ b/lib/msun/src/w_cabsl.c @@ -0,0 +1,20 @@ +/* + * cabs() wrapper for hypot(). + * + * Written by J.T. Conklin, <jtc@wimsey.com> + * Placed into the Public Domain, 1994. + * + * Modified by Steven G. Kargl for the long double type. + */ + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + +#include <complex.h> +#include <math.h> + +long double +cabsl(long double complex z) +{ + return hypotl(creall(z), cimagl(z)); +} |
