catanhl.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/catanhl.c
blob: 6025c414053c0bdae8808c9ad9fdecda50a135df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "complex_impl.h"
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
long double complex catanhl(long double complex z)
{
	return catanh(z);
}
#else
long double complex catanhl(long double complex z)
{
	z = catanl(CMPLXL(-cimagl(z), creall(z)));
	return CMPLXL(cimagl(z), -creall(z));
}
#endif
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月08日 13:40:08 +0000

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