diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-13 16:27:08 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-13 16:27:08 +0000 |
commit | 14d483eca0eb5f8b58b4b0317b734d485e4ca181 (patch) | |
tree | b7f8f56ce5878e3e9c31fced298eb2ed697d3106 /fpu/softfloat-native.c | |
parent | acda94b189832bb11022a5e5d152d7f3fe9b331e (diff) | |
download | qemu-14d483eca0eb5f8b58b4b0317b734d485e4ca181.zip qemu-14d483eca0eb5f8b58b4b0317b734d485e4ca181.tar.gz qemu-14d483eca0eb5f8b58b4b0317b734d485e4ca181.tar.bz2 |
Fix OpenSolaris softfloat warnings
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7102 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'fpu/softfloat-native.c')
-rw-r--r-- | fpu/softfloat-native.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fpu/softfloat-native.c b/fpu/softfloat-native.c index 99471b3..2af07a3 100644 --- a/fpu/softfloat-native.c +++ b/fpu/softfloat-native.c @@ -2,6 +2,9 @@ context is supported */ #include "softfloat.h" #include <math.h> +#if defined(HOST_SOLARIS) +#include <fenv.h> +#endif void set_float_rounding_mode(int val STATUS_PARAM) { |