about summary refs log tree commit diff
path: root/math/fsetexcptflg.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-04-27 13:54:09 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-04-27 13:54:09 +0000
commit6ad3493e2247e6cb3c9e086e8cb1f8b51a5f27d6 (patch)
treea76d1eac1389644afd1d05dcc26917746235b931 /math/fsetexcptflg.c
parent5aeb141a565d0b2289b6036b079ee26ebdac0e94 (diff)
downloadglibc-6ad3493e2247e6cb3c9e086e8cb1f8b51a5f27d6.tar.gz
glibc-6ad3493e2247e6cb3c9e086e8cb1f8b51a5f27d6.tar.xz
glibc-6ad3493e2247e6cb3c9e086e8cb1f8b51a5f27d6.zip
Fix fenv.h fallback returns (bug 14027).
Diffstat (limited to 'math/fsetexcptflg.c')
-rw-r--r--math/fsetexcptflg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/math/fsetexcptflg.c b/math/fsetexcptflg.c
index 3f6ac9893b..7d27d7f226 100644
--- a/math/fsetexcptflg.c
+++ b/math/fsetexcptflg.c
@@ -1,5 +1,5 @@
 /* Set floating-point environment exception handling.
-   Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1997-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
@@ -23,8 +23,8 @@
 int
 __fesetexceptflag (const fexcept_t *flagp, int excepts)
 {
-  /* This always fails.  */
-  return 1;
+  /* This always fails unless nothing needs to be done.  */
+  return (excepts != 0);
 }
 #if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
 strong_alias (__fesetexceptflag, __old_fesetexceptflag)