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/fedisblxcpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'math/fedisblxcpt.c') diff --git a/math/fedisblxcpt.c b/math/fedisblxcpt.c index 9b6ef27888..9b8374adeb 100644 --- a/math/fedisblxcpt.c +++ b/math/fedisblxcpt.c @@ -22,7 +22,7 @@ int fedisableexcept (int excepts) { - /* Signal failure. */ - return -1; + /* All exception traps are disabled. */ + return 0; } stub_warning (fedisableexcept) -- cgit 1.4.1