extend cmath (some of the functions are dummy)
[libm] / src / cmath / conjl.c
diff --git a/src/cmath/conjl.c b/src/cmath/conjl.c
new file mode 100644 (file)
index 0000000..0133226
--- /dev/null
@@ -0,0 +1,6 @@
+#include "libm.h"
+
+long double complex conjl(long double complex z)
+{
+       return cpackl(creall(z), -cimagl(z));
+}