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