freebsd-dev/lib/msun/src/w_cabsf.c
Yi Kong 7e06f4708c
msun: Rewrite function definitions with identifier lists
This syntax is removed in C2x proposal N2432.

Reviewed by:	pfg
MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D35771
2022-07-12 13:17:47 +08:00

23 lines
346 B
C

/*
* cabsf() wrapper for hypotf().
*
* Written by J.T. Conklin, <jtc@wimsey.com>
* Placed into the Public Domain, 1994.
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <complex.h>
#include <math.h>
#include "math_private.h"
float
cabsf(float complex z)
{
return hypotf(crealf(z), cimagf(z));
}