ack/lang/fortran/lib/libF77/r_tan.c
1991-10-07 16:59:33 +00:00

9 lines
80 B
C

#include "f2c.h"
double r_tan(x)
real *x;
{
double tan();
return( tan(*x) );
}