fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libm / mathfp / wf_cabs.c
blobc3ed0caa2415e459745b01def2fe142f43a69b74
1 /*
2 * cabsf() wrapper for hypotf().
3 *
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
8 #include "fdlibm.h"
10 struct complex {
11 float x;
12 float y;
15 float
16 cabsf(z)
17 struct complex z;
19 return hypotf(z.x, z.y);