mailing list of musl libc
 help / color / mirror / code / Atom feed
82e6c751238400280c84cbe082c964c90ab522d4 blob 209 bytes (raw)

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

float complex cacoshf(float complex z)
{
	_Bool zineg = cimagf(z) < 0;

	z = cacosf(z);
	if (zineg) return CMPLXF(cimagf(z), -crealf(z));
	else       return CMPLXF(-cimagf(z), crealf(z));
}
debug log:

solving 82e6c751 ...
found 82e6c751 in https://inbox.vuxu.org/musl/df809c4a40da4b46a53c4e78c1b20c75@tachyum.com/
found ade01c09 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 ade01c0907c8322ffcfe0dc084d35f5ec37be246	src/complex/cacoshf.c

applying [1/1] https://inbox.vuxu.org/musl/df809c4a40da4b46a53c4e78c1b20c75@tachyum.com/
diff --git a/src/complex/cacoshf.c b/src/complex/cacoshf.c
index ade01c09..82e6c751 100644

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

index at:
100644 82e6c751238400280c84cbe082c964c90ab522d4	src/complex/cacoshf.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).