From: Christoph Egger Date: Tue, 13 Sep 2011 13:12:06 +0000 (+0200) Subject: bswap.h: build fix X-Git-Tag: TizenStudio_2.0_p2.3~2242 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d86456a6d213a8ac9cf419504c3f3d888b386c0f;p=sdk%2Femulator%2Fqemu.git bswap.h: build fix qemu build fails when CONFIG_MACHINE_BSWAP_H is defined because float32, float64, etc. are not defined. This makes qemu build. Signed-off-by: Christoph Egger Signed-off-by: Anthony Liguori --- diff --git a/bswap.h b/bswap.h index f41bebe..cc7f84d 100644 --- a/bswap.h +++ b/bswap.h @@ -4,6 +4,7 @@ #include "config-host.h" #include +#include "softfloat.h" #ifdef CONFIG_MACHINE_BSWAP_H #include @@ -11,8 +12,6 @@ #include #else -#include "softfloat.h" - #ifdef CONFIG_BYTESWAP_H #include #else