mailing list of musl libc
 help / color / mirror / code / Atom feed
f0bb8da1585396d0d05e3914d5502428fff0246c 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 casinhl(long double complex z)
{
	return casinh(z);
}
#else
long double complex casinhl(long double complex z)
{
	z = casinl(CMPLXL(-cimagl(z), creall(z)));
	return CMPLXL(cimagl(z), -creall(z));
}
#endif
debug log:

solving f0bb8da ...
found f0bb8da in https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
found 714f189 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 714f189359071e31c9da7e52f66cb17df35facc9	src/complex/casinhl.c

applying [1/1] https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
diff --git a/src/complex/casinhl.c b/src/complex/casinhl.c
index 714f189..f0bb8da 100644

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

index at:
100644 f0bb8da1585396d0d05e3914d5502428fff0246c	src/complex/casinhl.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).