diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-04-14 06:01:43 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-04-14 06:01:43 +0000 |
commit | 39016485a7467e1fdc62b4e77c8cecba061ecdf4 (patch) | |
tree | 8613786a5fe755a03054390640cd111f3a999494 /gnu/lib/libf2c/libF77/z_exp.c | |
parent | 7282a200e9a6f3b23c4b910ccd116363d52619f4 (diff) |
remove libf2c, hasn't been built since it was moved to ports in 2010.
ok miod@ espie@
Diffstat (limited to 'gnu/lib/libf2c/libF77/z_exp.c')
-rw-r--r-- | gnu/lib/libf2c/libF77/z_exp.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gnu/lib/libf2c/libF77/z_exp.c b/gnu/lib/libf2c/libF77/z_exp.c deleted file mode 100644 index 16f51e74a45..00000000000 --- a/gnu/lib/libf2c/libF77/z_exp.c +++ /dev/null @@ -1,13 +0,0 @@ -#include "f2c.h" - -#undef abs -#include "math.h" -void -z_exp (doublecomplex * r, doublecomplex * z) -{ - double expx, zi = z->i; - - expx = exp (z->r); - r->r = expx * cos (zi); - r->i = expx * sin (zi); -} |