repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* config.gcc (m32r-elf): Revert previous delta.
[official-gcc.git]
/
libf2c
/
libF77
/
z_exp.c
blob
16f51e74a45631b4e9ecda29cada3b96ded36d49
1
#include
"f2c.h"
2
3
#undef abs
4
#include
"math.h"
5
void
6
z_exp
(
doublecomplex
*
r
,
doublecomplex
*
z
)
7
{
8
double
expx
,
zi
=
z
->
i
;
9
10
expx
=
exp
(
z
->
r
);
11
r
->
r
=
expx
*
cos
(
zi
);
12
r
->
i
=
expx
*
sin
(
zi
);
13
}