This website requires JavaScript.
Explore
Help
Sign In
mirror
/
gcc
Watch
2
Star
0
Fork
0
You've already forked gcc
mirror of
git://gcc.gnu.org/git/gcc.git
synced
2024-12-19 12:49:44 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
9321813126
gcc
/
libf2c
/
libF77
/
r_cnjg.c
9 lines
103 B
C
Raw
Normal View
History
Unescape
Escape
* Previous contents of gcc/f/runtime moved into toplevel "libf2c" directory. From-SVN: r17568
1998-02-01 09:37:08 +08:00
#
include
"f2c.h"
revert back to netlib versions as of f2c-19990501 From-SVN: r26739
1999-05-03 16:33:21 +08:00
VOID
r_cnjg
(
complex
*
r
,
complex
*
z
)
* Previous contents of gcc/f/runtime moved into toplevel "libf2c" directory. From-SVN: r17568
1998-02-01 09:37:08 +08:00
{
Update to Netlib version of 1999-05-03 From-SVN: r26740
1999-05-03 16:35:22 +08:00
real
zi
=
z
-
>
i
;
r
-
>
r
=
z
-
>
r
;
r
-
>
i
=
-
zi
;
}
Reference in New Issue
Copy Permalink