source: trunk/libs/newlib/src/newlib/libm/complex/cabsf.c @ 567

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

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

File size: 359 bytes
Line 
1/* $NetBSD: cabsf.c,v 1.1 2007/08/20 16:01:30 drochner Exp $ */
2
3/*
4 * Written by Matthias Drochner <drochner@NetBSD.org>.
5 * Public domain.
6 *
7 * imported and modified include for newlib 2010/10/03
8 * Marco Atzeri <marco_atzeri@yahoo.it>
9 */
10
11#include <complex.h>
12#include <math.h>
13
14float
15cabsf(float complex z)
16{
17
18        return hypotf( crealf(z), cimagf(z) );
19}
Note: See TracBrowser for help on using the repository browser.