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
* builtins.def: Break out _Complex math functions into their
[official-gcc.git]
/
libf2c
/
libF77
/
d_cnjg.c
blob
bc46ae6959816f6cb8f95b3ac6d2f063d62b0bfa
1
#include
"f2c.h"
2
3
void
4
d_cnjg
(
doublecomplex
*
r
,
doublecomplex
*
z
)
5
{
6
doublereal zi
=
z
->
i
;
7
r
->
r
=
z
->
r
;
8
r
->
i
= -
zi
;
9
}