diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/fclrexcpt.c | 6 | ||||
-rw-r--r-- | math/fraiseexcpt.c | 6 | ||||
-rw-r--r-- | math/fsetexcptflg.c | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/math/fclrexcpt.c b/math/fclrexcpt.c index 27e9bd0c32..dcdcfbbe99 100644 --- a/math/fclrexcpt.c +++ b/math/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - 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 __feclearexcept (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 (__feclearexcept, __old_feclearexcept) diff --git a/math/fraiseexcpt.c b/math/fraiseexcpt.c index cb752df734..83a488b456 100644 --- a/math/fraiseexcpt.c +++ b/math/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997, 1999, 2000, 2002 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 __feraiseexcept (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 (__feraiseexcept, __old_feraiseexcept) 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) |