cargl.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/cargl.c
blob: e0d504782f1fc36aa7fcb70a9e40248f7a9b4be4 (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 cargl(long double complex z)
{
	return carg(z);
}
#else
long double cargl(long double complex z)
{
	return atan2l(cimagl(z), creall(z));
}
#endif
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月23日 21:20:36 +0000

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