aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/r_sin.c
blob: 095b9510de90c66cd45d21dd840be25518f9ca97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double sin();
double r_sin(x) real *x;
#else
#undef abs
#include <math.h>
double r_sin(real *x)
#endif
{
return( sin(*x) );
}