cabsl.c\complex\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/complex/cabsl.c
blob: d37e3f2ea5059ca2cceb12742b565f3b38428909 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "complex_impl.h"
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
long double cabsl(long double complex z)
{
	return cabs(z);
}
#else
long double cabsl(long double complex z)
{
	return hypotl(creall(z), cimagl(z));
}
#endif
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 22:36:40 +0000

AltStyle によって変換されたページ (->オリジナル) /