aboutsummaryrefslogtreecommitdiff
path: root/lib/libF77/d_sin.c
blob: 0013af03496f33f350b7b1e39a92680640f02a92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double sin();
double d_sin(x) doublereal *x;
#else
#undef abs
#include "math.h"
double d_sin(doublereal *x)
#endif
{
return( sin(*x) );
}