diff options
author | Craig A. Berry <craigberry@mac.com> | 2014-08-23 10:42:26 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2014-08-23 13:59:26 -0500 |
commit | a80f53e740e03a1fdfd8d5f249a5712f8dd47fbb (patch) | |
tree | 00240318b96c708b51fa80007b6668413cb32e33 /perl.h | |
parent | 49994d1029811d9e902dde39d8f93f94c963551a (diff) | |
download | perl-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.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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); |