mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
18 lines
290 B
C
18 lines
290 B
C
|
/* $NetBSD: cabsf.c,v 1.1 2007/08/20 16:01:30 drochner Exp $ */
|
||
|
|
||
|
/*
|
||
|
* Written by Matthias Drochner <drochner@NetBSD.org>.
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include "../src/namespace.h"
|
||
|
#include <complex.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
float
|
||
|
cabsf(float complex z)
|
||
|
{
|
||
|
|
||
|
return hypotf(__real__ z, __imag__ z);
|
||
|
}
|