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
2003-05-14 Eric Christopher <echristo@redhat.com>
[official-gcc.git]
/
libf2c
/
libF77
/
z_abs.c
blob
2419c0eac4934542869cc50097e63bb112d3b025
1
#include
"f2c.h"
2
3
double
f__cabs
(
double
,
double
);
4
double
5
z_abs
(
doublecomplex
*
z
)
6
{
7
return
(
f__cabs
(
z
->
r
,
z
->
i
));
8
}