diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2016-09-27 18:40:46 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2016-09-30 08:40:27 -0400 |
commit | 84e4d7a5a350bcabe4046cd9ad66280ec7872705 (patch) | |
tree | 251c6d0b7e538e2f9e339b50734c29cfac692385 /ext/POSIX | |
parent | a5dc248451d2c0fcd7fc58e4d50eef8fa4a68e3d (diff) | |
download | perl-84e4d7a5a350bcabe4046cd9ad66280ec7872705.tar.gz |
vax-netbsd: POSIX: fenv.h is work-in-progress
Given that fenv.h seems very IEEE-754 oriented,
it's likely to stay that way for a while.
Diffstat (limited to 'ext/POSIX')
-rw-r--r-- | ext/POSIX/POSIX.xs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index d962541353..7c375eb9f5 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -35,8 +35,10 @@ #include <float.h> #endif #ifdef I_FENV +#if !(defined(__vax__) && defined(__NetBSD__)) #include <fenv.h> #endif +#endif #ifdef I_LIMITS #include <limits.h> #endif |