Index: fusl/src/complex/ctanl.c |
diff --git a/fusl/src/complex/ctanl.c b/fusl/src/complex/ctanl.c |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ac1c3e0ad86d7611b8a9a74ed68a99abbffdbc21 |
--- /dev/null |
+++ b/fusl/src/complex/ctanl.c |
@@ -0,0 +1,14 @@ |
+#include "libm.h" |
+ |
+#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 |
+long double complex ctanl(long double complex z) |
+{ |
+ return ctan(z); |
+} |
+#else |
+long double complex ctanl(long double complex z) |
+{ |
+ z = ctanhl(CMPLXL(-cimagl(z), creall(z))); |
+ return CMPLXL(cimagl(z), -creall(z)); |
+} |
+#endif |