summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/complex/cexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/complex/cexp.c')
-rw-r--r--winsup/mingw/mingwex/complex/cexp.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/winsup/mingw/mingwex/complex/cexp.c b/winsup/mingw/mingwex/complex/cexp.c
deleted file mode 100644
index 43ac9ab9e..000000000
--- a/winsup/mingw/mingwex/complex/cexp.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- cexp.c
- Contributed by Danny Smith
- 2003-10-20
-*/
-
-#include <math.h>
-#include <complex.h>
-
-/* cexp (x + I * y) = exp (x) * cos (y) + I * exp (x) * sin (y) */
-
-double complex cexp (double complex Z)
-{
- double complex Res;
- long double rho = exp (__real__ Z);
- __real__ Res = rho * cos(__imag__ Z);
- __imag__ Res = rho * sin(__imag__ Z);
- return Res;
-}