summaryrefslogtreecommitdiff
path: root/src/complex/csqrtl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/csqrtl.c')
-rw-r--r--src/complex/csqrtl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/complex/csqrtl.c b/src/complex/csqrtl.c
new file mode 100644
index 00000000..0600ef3b
--- /dev/null
+++ b/src/complex/csqrtl.c
@@ -0,0 +1,7 @@
+#include "libm.h"
+
+//FIXME
+long double complex csqrtl(long double complex z)
+{
+ return csqrt(z);
+}