extend cmath (some of the functions are dummy)
[libm] / src / cmath / clog.c
index 4f8a428..6f10a11 100644 (file)
@@ -1,5 +1,9 @@
 #include "libm.h"
 
+// FIXME
+
+/* log(z) = log(|z|) + i arg(z) */
+
 double complex clog(double complex z)
 {
        double r, phi;