mailing list of musl libc
 help / color / mirror / code / Atom feed
dc88da870eb0712a0ab4cedbafe1b3ecd1453865 blob 279 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
 
#include "libm.h"

#ifdef LONG_DOUBLE_IS_BINARY64
long double complex clogl(long double complex z)
{
	return clog(z);
}
#else
// FIXME
long double complex clogl(long double complex z)
{
	long double r, phi;

	r = cabsl(z);
	phi = cargl(z);
	return CMPLXL(logl(r), phi);
}
#endif
debug log:

solving dc88da8 ...
found dc88da8 in https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
found 18f1608 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 18f16088d7a31082feb0ff51c6453e2ea1f8d64a	src/complex/clogl.c

applying [1/1] https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
diff --git a/src/complex/clogl.c b/src/complex/clogl.c
index 18f1608..dc88da8 100644

Checking patch src/complex/clogl.c...
Applied patch src/complex/clogl.c cleanly.

index at:
100644 dc88da870eb0712a0ab4cedbafe1b3ecd1453865	src/complex/clogl.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).