blob: 095b9510de90c66cd45d21dd840be25518f9ca97 [file] [log] [blame]
#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) );
}