first commit of the new libm!
[musl] / src / complex / cexpl.c
diff --git a/src/complex/cexpl.c b/src/complex/cexpl.c
new file mode 100644 (file)
index 0000000..a27f85c
--- /dev/null
@@ -0,0 +1,7 @@
+#include "libm.h"
+
+//FIXME
+long double complex cexpl(long double complex z)
+{
+       return cexp(z);
+}