mailing list of musl libc
 help / color / mirror / code / Atom feed
089cdc842310b7bbbcec98861f5319036d8a671e blob 275 bytes (raw)

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

#ifdef LONG_DOUBLE_IS_BINARY64
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
debug log:

solving 089cdc8 ...
found 089cdc8 in https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
found a5dd538 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 a5dd538e44535ccc4961eadb593df3f1461a649b	src/complex/catanhl.c

applying [1/1] https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
diff --git a/src/complex/catanhl.c b/src/complex/catanhl.c
index a5dd538..089cdc8 100644

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

index at:
100644 089cdc842310b7bbbcec98861f5319036d8a671e	src/complex/catanhl.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).