diff options
Diffstat (limited to 'lib/libF77/r_sinh.c')
-rw-r--r-- | lib/libF77/r_sinh.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/libF77/r_sinh.c b/lib/libF77/r_sinh.c new file mode 100644 index 0000000..00cba0c --- /dev/null +++ b/lib/libF77/r_sinh.c @@ -0,0 +1,13 @@ +#include "f2c.h" + +#ifdef KR_headers +double sinh(); +double r_sinh(x) real *x; +#else +#undef abs +#include "math.h" +double r_sinh(real *x) +#endif +{ +return( sinh(*x) ); +} |