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

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

#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
long double complex cacoshl(long double complex z)
{
	return cacosh(z);
}
#else
long double complex cacoshl(long double complex z)
{
	_Bool zineg = cimagl(z) < 0;

	z = cacosl(z);
	if (zineg) return CMPLXL(cimagl(z), -creall(z));
	else       return CMPLXL(-cimagl(z), creall(z));
}
#endif
debug log:

solving b0081e90 ...
found b0081e90 in https://inbox.vuxu.org/musl/df809c4a40da4b46a53c4e78c1b20c75@tachyum.com/
found 65342557 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 65342557f9a545ef935190b3c64b6bdf2c6ceaa5	src/complex/cacoshl.c

applying [1/1] https://inbox.vuxu.org/musl/df809c4a40da4b46a53c4e78c1b20c75@tachyum.com/
diff --git a/src/complex/cacoshl.c b/src/complex/cacoshl.c
index 65342557..b0081e90 100644

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

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