diff options
author | Andrew Lavin <aj.lavin@gmail.com> | 2009-05-22 16:36:40 -0400 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-06-03 09:19:26 +0100 |
commit | ab86662ab499e1f29c0f8c4248771e730c281e3f (patch) | |
tree | 4c085af5715c67b7ff73fcbcd497cfcc202ec5e5 /test/invalid-matrix.c | |
parent | eec547648439884a464eef832067a363cf1547e2 (diff) |
[test] Compile fix for invalid-matrix
Fixed test compile error on OS X that caused fenv.h not to be included.
Diffstat (limited to 'test/invalid-matrix.c')
-rw-r--r-- | test/invalid-matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/invalid-matrix.c b/test/invalid-matrix.c index 4fbda614..2e4b6652 100644 --- a/test/invalid-matrix.c +++ b/test/invalid-matrix.c @@ -33,7 +33,7 @@ #define INFINITY HUGE_VAL #endif -#if HAVE_FEDISABLEEXCEPT +#if HAVE_FEDISABLEEXCEPT || HAVE_FECLEAREXCEPT #include <fenv.h> #endif |