diff src/sysfloat.h @ 209:41ff10fd062f r20-4b3

Import from CVS: tag r20-4b3
author cvs
date Mon, 13 Aug 2007 10:04:58 +0200
parents 360340f9fd5f
children e11d67e05968
line wrap: on
line diff
--- a/src/sysfloat.h	Mon Aug 13 10:03:54 2007 +0200
+++ b/src/sysfloat.h	Mon Aug 13 10:04:58 2007 +0200
@@ -76,16 +76,6 @@
 # include <errno.h>
 #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 */
-
 #ifndef isnan
 # define isnan(x) ((x) != (x))
 #endif