From: Jun Tian Date: Wed, 21 Nov 2012 08:12:13 +0000 (+0800) Subject: Fix the uint16 typedef issue X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~1348 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5577071ff87fd2839f4ba4034840d63d9e371125;p=sdk%2Femulator%2Fqemu.git Fix the uint16 typedef issue Signed-off-by: Jun Tian --- diff --git a/fpu/softfloat.h b/fpu/softfloat.h index 1e4a0572e2..02d1d9ce7e 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -57,9 +57,11 @@ these four paragraphs for those parts of this code that are retained. typedef uint8_t flag; typedef uint8_t uint8; typedef int8_t int8; -#if !(defined(__APPLE__) && defined(_UINT16)) +#ifndef __APPLE__ +#ifndef _UINT16 #define _UINT16 #endif +#endif typedef unsigned int uint32; typedef signed int int32; typedef uint64_t uint64;