date and time created 83/01/21 11:10:48 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_sqrt.c
/*
* "@(#)d_sqrt.c 1.1"
*/
double d_sqrt(x)
double *x;
{
double sqrt();
return( sqrt(*x) );
}