summaryrefslogtreecommitdiff
path: root/src/complex/csqrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/csqrt.c')
-rw-r--r--src/complex/csqrt.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/complex/csqrt.c b/src/complex/csqrt.c
new file mode 100644
index 00000000..edbbd394
--- /dev/null
+++ b/src/complex/csqrt.c
@@ -0,0 +1,25 @@
+# define TGSOURCE "csqrt.c"
+#include "nonstd/tgmath.h"
+
+#include <complex.h>
+
+TYPE complex TGFN(csqrt)(TYPE complex z)
+{
+ return 0.0;
+}
+
+/*d
+The csqrt functions compute the complex square root of z, with a branch cut along the
+negative real axis.
+d*/
+
+/*r
+The csqrt functions return the complex square root value, in the range of the right half-
+plane (including the imaginary axis).
+r*/
+
+/*
+STDC(199901)
+LINK(m)
+*/
+