V7M/src/libF77/r_sqrt.c

Compare this file to the similar file:
Show the results in this format:

double r_sqrt(x)
float *x;
{
double sqrt();
return( sqrt(*x) );
}