diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-08-02 20:26:41 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-08-02 20:26:41 +0300 |
commit | 3998ed059bbcfc189cd0d6c5762913fbd4ff4e77 (patch) | |
tree | 4287f8de43dc4cd70c01c311b9484b2030903c86 /custom.h | |
parent | 23356c2d522bf17b4acb314f7aa6503a62db2765 (diff) | |
parent | 4ad924c4988cfbe68b3a81c3647b0cced9fd2af3 (diff) | |
download | egawk-3998ed059bbcfc189cd0d6c5762913fbd4ff4e77.tar.gz egawk-3998ed059bbcfc189cd0d6c5762913fbd4ff4e77.tar.bz2 egawk-3998ed059bbcfc189cd0d6c5762913fbd4ff4e77.zip |
Merge branch 'gawk-4.2-stable' of ssh://git.sv.gnu.org/srv/git/gawk into gawk-4.2-stable
Diffstat (limited to 'custom.h')
-rw-r--r-- | custom.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -38,6 +38,14 @@ #include "vms/redirect.h" #endif +/* OpenVMS has some definitions in fp.h that should be in math.h */ +/* From John Malmberg, wb8tyw@qsl.net */ +#ifdef __VMS +#include <fp.h> +/* isnan () macro is broken */ +#undef isnan +#endif + /* For QNX, based on submission from Michael Hunter, mphunter@qnx.com */ #ifdef __QNX__ #define GETPGRP_VOID 1 |