blob: d2a3dac8581e56e576a524936a4a1a2aff26cf07 (
plain) (
blame)
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) );
}
|