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