blob: 37e0df25fa50002ee7dbd59f0d5c13f25be36b01 (
plain) (
tree)
|
|
#include "f2c.h"
#ifdef KR_headers
double sin();
double r_sin(x) real *x;
#else
#undef abs
#include "math.h"
#ifdef __cplusplus
extern "C" {
#endif
double r_sin(real *x)
#endif
{
return( sin(*x) );
}
#ifdef __cplusplus
}
#endif
|