aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/d_sin.c
blob: fdd699eede535ea5617b7bba6c8f79df79f88426 (plain)
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) );
}