blob: fac152f9ad31661562d035104afe7c564cd6548b [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * cabsf() wrapper for hypotf().
3 *
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
7
8#ifndef lint
9static const char rcsid[] =
10 "$FreeBSD: src/lib/msun/src/w_cabsf.c,v 1.3 2001/06/13 15:16:30 ru Exp $";
11#endif /* not lint */
12
13#include <complex.h>
14#include <math.h>
15#include "math_private.h"
16
17float
18cabsf(z)
19 float complex z;
20{
21
22 return hypotf(crealf(z), cimagf(z));
23}