BSD 4_2 release
[unix-history] / usr / src / usr.lib / libF77 / d_atan.c
/*
* "@(#)d_atan.c 1.1"
*/
double d_atan(x)
double *x;
{
double atan();
return( atan(*x) );
}