diff options
Diffstat (limited to 'src/complex/cexpl.c')
-rw-r--r-- | src/complex/cexpl.c | 7 |
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); +} |