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