summaryrefslogtreecommitdiffstats
path: root/lib/libF77/r_sqrt.c
blob: 26b45458aac92eb392d4040f8a349babe7c7423a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double sqrt();
double r_sqrt(x) real *x;
#else
#undef abs
#include "math.h"
double r_sqrt(real *x)
#endif
{
return( sqrt(*x) );
}
OpenPOWER on IntegriCloud