source: trunk/libs/newlib/src/newlib/libm/mathfp/w_cabs.c @ 503

Last change on this file since 503 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 255 bytes
Line 
1/*
2 * cabs() wrapper for hypot().
3 *
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
7
8#include "fdlibm.h"
9
10struct complex {
11        double x;
12        double y;
13};
14
15double
16cabs(z)
17        struct complex z;
18{
19        return hypot(z.x, z.y);
20}
Note: See TracBrowser for help on using the repository browser.