summaryrefslogtreecommitdiff
path: root/src/complex/clog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/clog.c')
-rw-r--r--src/complex/clog.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/complex/clog.c b/src/complex/clog.c
new file mode 100644
index 00000000..8b958fea
--- /dev/null
+++ b/src/complex/clog.c
@@ -0,0 +1,26 @@
+# define TGSOURCE "clog.c"
+#include "nonstd/tgmath.h"
+
+#include <complex.h>
+
+TYPE complex TGFN(clog)(TYPE complex z)
+{
+ return 0.0;
+}
+
+/*d
+The clog functions compute the complex natural (base-e) logarithm of z, with a branch
+cut along the negative real axis.
+d*/
+
+/*r
+The clog functions return the complex natural logarithm value, in the range of a strip
+mathematically unbounded along the real axis and in the interval [−i π , +i π ] along the
+imaginary axis.
+r*/
+
+/*
+STDC(199901)
+LINK(m)
+*/
+