Research V7 development
[unix-history] / usr / src / libF77 / r_cos.c
CommitLineData
27d66adc
KT
1double r_cos(x)
2float *x;
3{
4double cos();
5return( cos(*x) );
6}