Bell 32V development
[unix-history] / usr / src / libF77 / r_tan.c
... / ...
CommitLineData
1double r_tan(x)
2float *x;
3{
4double tan();
5return( tan(*x) );
6}