Bell 32V development
[unix-history] / usr / src / libF77 / r_sqrt.c
... / ...
CommitLineData
1double r_sqrt(x)
2float *x;
3{
4double sqrt();
5return( sqrt(*x) );
6}