diff options
author | Chih-Wei Huang <cwhuang@linux.org.tw> | 2010-12-14 16:46:12 +0800 |
---|---|---|
committer | Chih-Wei Huang <cwhuang@linux.org.tw> | 2010-12-23 09:32:12 +0800 |
commit | b9aedb2c57b2aca4aa65308688f4339b8f06e20e (patch) | |
tree | 1d9c21d861d8fc64a979725ca97bea9c78dd1459 /libm | |
parent | a4f6d2281f979c013080e28b1f658c2ba9a8e9f3 (diff) | |
download | bionic-b9aedb2c57b2aca4aa65308688f4339b8f06e20e.zip bionic-b9aedb2c57b2aca4aa65308688f4339b8f06e20e.tar.gz bionic-b9aedb2c57b2aca4aa65308688f4339b8f06e20e.tar.bz2 |
android-x86: use proper variable typing
Change-Id: Iff99932acd2f6cb482fc5da9ff586d7ab2a8b209
Diffstat (limited to 'libm')
-rw-r--r-- | libm/include/i387/fenv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libm/include/i387/fenv.h b/libm/include/i387/fenv.h index 4281f10..5fe64e2 100644 --- a/libm/include/i387/fenv.h +++ b/libm/include/i387/fenv.h @@ -131,7 +131,8 @@ feclearexcept(int __excepts) static __inline int fegetexceptflag(fexcept_t *__flagp, int __excepts) { - int __mxcsr, __status; + int __mxcsr; + short __status; __fnstsw(&__status); if (__HAS_SSE()) |