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