summaryrefslogtreecommitdiff
path: root/src/complex/cexpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/cexpl.c')
-rw-r--r--src/complex/cexpl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/complex/cexpl.c b/src/complex/cexpl.c
new file mode 100644
index 00000000..a27f85c0
--- /dev/null
+++ b/src/complex/cexpl.c
@@ -0,0 +1,7 @@
+#include "libm.h"
+
+//FIXME
+long double complex cexpl(long double complex z)
+{
+ return cexp(z);
+}