first commit of the new libm!
[musl] / src / complex / ctanhl.c
diff --git a/src/complex/ctanhl.c b/src/complex/ctanhl.c
new file mode 100644 (file)
index 0000000..89a75d1
--- /dev/null
@@ -0,0 +1,7 @@
+#include "libm.h"
+
+//FIXME
+long double complex ctanhl(long double complex z)
+{
+       return ctanh(z);
+}