f2c libF77 from netlib.att.com Jan 4 1994
[unix-history] / lib / libF77 / d_sqrt.c
#include "f2c.h"
#ifdef KR_headers
double sqrt();
double d_sqrt(x) doublereal *x;
#else
#undef abs
#include "math.h"
double d_sqrt(doublereal *x)
#endif
{
return( sqrt(*x) );
}