summaryrefslogtreecommitdiff
path: root/math/fedisblxcpt.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-06-20 19:10:44 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-06-20 19:10:44 +0000
commitc91e0825251b4f57e8ce1d9d4673bee6e279e0cd (patch)
tree8ec4d95dc25e260084f23726cbb2cc202ed46e93 /math/fedisblxcpt.c
parentbfcacbdec0ea80b12b23f89572c29b87624e76ec (diff)
Avoid spurious failures from <fenv.h> fallback functions (bug 15654).
Diffstat (limited to 'math/fedisblxcpt.c')
-rw-r--r--math/fedisblxcpt.c4
1 files changed, 2 insertions, 2 deletions
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)