new file organization
[unix-history] / usr / src / usr.bin / f77 / libF77 / r_sqrt.c
CommitLineData
31dde89c
DW
1/*
2 * "@(#)r_sqrt.c 1.1"
3 */
4
5double r_sqrt(x)
6float *x;
7{
8double sqrt();
9return( sqrt(*x) );
10}