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

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

#ifdef LONG_DOUBLE_IS_BINARY64
long double complex cacosl(long double complex z)
{
	return cacos(z);
}
#else
// FIXME
#define PI_2 1.57079632679489661923132169163975144L
long double complex cacosl(long double complex z)
{
	z = casinl(z);
	return CMPLXL(PI_2 - creall(z), -cimagl(z));
}
#endif
debug log:

solving d44d82b ...
found d44d82b in https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
found 7fd4a2f in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 7fd4a2f6b442404b00e9ea133e0e6e90dec8b057	src/complex/cacosl.c

applying [1/1] https://inbox.vuxu.org/musl/1457404695-17281-1-git-send-email-masanori.ogino@gmail.com/
diff --git a/src/complex/cacosl.c b/src/complex/cacosl.c
index 7fd4a2f..d44d82b 100644

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

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