summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2014-08-23 10:42:26 -0500
committerCraig A. Berry <craigberry@mac.com>2014-08-23 13:59:26 -0500
commita80f53e740e03a1fdfd8d5f249a5712f8dd47fbb (patch)
tree00240318b96c708b51fa80007b6668413cb32e33 /perl.h
parent49994d1029811d9e902dde39d8f93f94c963551a (diff)
downloadperl-a80f53e740e03a1fdfd8d5f249a5712f8dd47fbb.tar.gz
Include fp.h with math.h on VMS.
It has some macros that really should be in math.h according to C99.
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl.h b/perl.h
index adb1f240f0..ece12e1083 100644
--- a/perl.h
+++ b/perl.h
@@ -3979,6 +3979,10 @@ char *strcpy(), *strcat();
#ifdef I_MATH
# include <math.h>
+# ifdef __VMS
+ /* isfinite and others are here rather than in math.h as C99 stipulates */
+# include <fp.h>
+# endif
#else
START_EXTERN_C
double exp (double);