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
* tree.c (make_node): Set TREE_SIDE_EFFECTS for expressions that
[official-gcc.git]
/
libf2c
/
libF77
/
c_abs.c
blob
041fbd3d8bb06e13998e975cb8c17eedd0a6afb1
1
#include
"f2c.h"
2
3
#ifdef KR_headers
4
extern
double
f__cabs
();
5
6
double
c_abs
(
z
)
complex
*
z
;
7
#else
8
extern
double
f__cabs
(
double
,
double
);
9
10
double
c_abs
(
complex
*
z
)
11
#endif
12
{
13
return
(
f__cabs
(
z
->
r
,
z
->
i
) );
14
}