summaryrefslogtreecommitdiff
path: root/libm/w_cabs.c
blob: d2a54cd9f499190a05bb6ef20ded237be964b631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * cabs() wrapper for hypot().
 *
 * Written by J.T. Conklin, <jtc@wimsey.com>
 * Placed into the Public Domain, 1994.
 */

#include <complex.h>
#include <math.h>


double cabs(double _Complex z)
{
	return hypot(__real__ z, __imag__ z);
}
libm_hidden_def(cabs)