summaryrefslogtreecommitdiff
path: root/src/complex/cpow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/cpow.c')
-rw-r--r--src/complex/cpow.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/complex/cpow.c b/src/complex/cpow.c
new file mode 100644
index 00000000..5e778b1a
--- /dev/null
+++ b/src/complex/cpow.c
@@ -0,0 +1,23 @@
+# define TGSOURCE "cpow.c"
+#include "nonstd/tgmath.h"
+
+#include <complex.h>
+
+TYPE complex TGFN(cpow)(TYPE complex x, TYPE complex y)
+{
+ return 0.0;
+}
+
+/*d
+The cpow functions compute the complex power function x y , with a branch cut for the
+first parameter along the negative real axis.
+d*/
+
+/*r
+The cpow functions return the complex power function value.
+r*/
+/*
+STDC(199901)
+LINK(m)
+*/
+