summaryrefslogtreecommitdiff
path: root/libf2c/libF77/r_tan.c
blob: 455c96401939fde853241362e7f23ba7483d41ee (plain)
1
2
3
4
5
6
7
8
#include "f2c.h"

#undef abs
#include <math.h>
double r_tan(real *x)
{
return( tan(*x) );
}