diff options
Diffstat (limited to 'libf2c/libF77/d_sin.c')
-rw-r--r-- | libf2c/libF77/d_sin.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libf2c/libF77/d_sin.c b/libf2c/libF77/d_sin.c new file mode 100644 index 00000000000..fdd699eede5 --- /dev/null +++ b/libf2c/libF77/d_sin.c @@ -0,0 +1,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) ); +} |