diff options
Diffstat (limited to 'libf2c/libF77/r_sinh.c')
-rw-r--r-- | libf2c/libF77/r_sinh.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libf2c/libF77/r_sinh.c b/libf2c/libF77/r_sinh.c index 3bf4bb1..47b6ad8 100644 --- a/libf2c/libF77/r_sinh.c +++ b/libf2c/libF77/r_sinh.c @@ -1,13 +1,8 @@ #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) ); } |