From c91e0825251b4f57e8ce1d9d4673bee6e279e0cd Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 20 Jun 2013 19:10:44 +0000 Subject: Avoid spurious failures from fallback functions (bug 15654). --- math/feupdateenv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'math/feupdateenv.c') diff --git a/math/feupdateenv.c b/math/feupdateenv.c index e0350b3284..5a39521eed 100644 --- a/math/feupdateenv.c +++ b/math/feupdateenv.c @@ -23,8 +23,8 @@ int __feupdateenv (const fenv_t *envp) { - /* This always fails. */ - return 1; + /* Nothing to do. */ + return 0; } #if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2) strong_alias (__feupdateenv, __old_feupdateenv) -- cgit v1.2.1