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