diff options
Diffstat (limited to 'sysdeps/libm-ieee754/w_cabs.c')
-rw-r--r-- | sysdeps/libm-ieee754/w_cabs.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sysdeps/libm-ieee754/w_cabs.c b/sysdeps/libm-ieee754/w_cabs.c new file mode 100644 index 0000000000..ccacf67363 --- /dev/null +++ b/sysdeps/libm-ieee754/w_cabs.c @@ -0,0 +1,16 @@ +/* + * cabs() wrapper for hypot(). + * + * Written by J.T. Conklin, <jtc@wimsey.com> + * Placed into the Public Domain, 1994. + */ + +#include <math.h> + +double +__cabs(z) + struct __cabs_complex z; +{ + return __hypot(z.x, z.y); +} +weak_alias (__cabs, cabs) |