cpowl.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/cpowl.c
blob: c1a80a7b255bdedf712a067fe3eebcaedf96b78d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "libm.h"
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
long double complex cpowl(long double complex z, long double complex c)
{
	return cpow(z, c);
}
#else
long double complex cpowl(long double complex z, long double complex c)
{
	return cexpl(c * clogl(z));
}
#endif
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月02日 17:50:55 +0000

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