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
* lib/objc.exp: Add -lposix4 on Solaris 2.8.
[official-gcc.git]
/
libf2c
/
libF77
/
d_sqrt.c
blob
b5cf83b946f8472c5596e00207946a6f5b028a7f
1
#include
"f2c.h"
2
3
#ifdef KR_headers
4
double
sqrt
();
5
double
d_sqrt
(
x
)
doublereal
*
x
;
6
#else
7
#undef abs
8
#include <math.h>
9
double
d_sqrt
(
doublereal
*
x
)
10
#endif
11
{
12
return
(
sqrt
(*
x
) );
13
}