9 lines
86 B
C
9 lines
86 B
C
#include "f2c.h"
|
|
|
|
double d_tan(x)
|
|
doublereal *x;
|
|
{
|
|
double tan();
|
|
return( tan(*x) );
|
|
}
|