diff options
author | Avi Kivity <avi@redhat.com> | 2009-11-02 12:38:01 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-11-02 12:38:01 +0200 |
commit | eb8ef72e84231840e32c94581fa6ae5dd4fe8ae2 (patch) | |
tree | 6ce2c9c21ba0ca6e7c3b5ef0eeafbb556024d574 /fpu | |
parent | e3f32269412952c1d732dea1d668dd298eead01c (diff) |
Fix softfloat build failure due to missing HOST_LONG_BITS
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'fpu')
-rw-r--r-- | fpu/softfloat-native.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fpu/softfloat-native.c b/fpu/softfloat-native.c index 4c70b6c4f..b4b678406 100644 --- a/fpu/softfloat-native.c +++ b/fpu/softfloat-native.c @@ -5,6 +5,7 @@ #if defined(CONFIG_SOLARIS) #include <fenv.h> #endif +#include "config-host.h" void set_float_rounding_mode(int val STATUS_PARAM) { |