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