about summary refs log tree commit diff
path: root/src/complex/clogf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/clogf.c')
-rw-r--r--src/complex/clogf.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/complex/clogf.c b/src/complex/clogf.c
new file mode 100644
index 00000000..f3aec54d
--- /dev/null
+++ b/src/complex/clogf.c
@@ -0,0 +1,12 @@
+#include "libm.h"
+
+// FIXME
+
+float complex clogf(float complex z)
+{
+	float r, phi;
+
+	r = cabsf(z);
+	phi = cargf(z);
+	return cpackf(logf(r), phi);
+}