9 lines
80 B
C
9 lines
80 B
C
#include "f2c.h"
|
|
|
|
double r_sin(x)
|
|
real *x;
|
|
{
|
|
double sin();
|
|
return( sin(*x) );
|
|
}
|