diff options
Diffstat (limited to 'src/floatfns.c')
-rw-r--r-- | src/floatfns.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index 8ee28210e43..d454d6e3cf1 100644 --- a/src/floatfns.c +++ b/src/floatfns.c @@ -101,16 +101,6 @@ extern int errno; #endif #endif -/* Avoid traps on VMS from sinh and cosh. - All the other functions set errno instead. */ - -#ifdef VMS -#undef cosh -#undef sinh -#define cosh(x) ((exp(x)+exp(-x))*0.5) -#define sinh(x) ((exp(x)-exp(-x))*0.5) -#endif /* VMS */ - #ifdef FLOAT_CATCH_SIGILL static SIGTYPE float_error (); #endif |