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