X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=math%2Ffsetexcptflg.c;h=2953c631242f03508dece82a47f0be679521f615;hb=16439f419b270184ec501c531bf20d83b6745fb0;hp=8d0f0ff64ba99c054c4eb16bb4d0fe7ca632fb17;hpb=0ecb606cb6cf65de1d9fc8a919bceb4be476c602;p=thirdparty%2Fglibc.git diff --git a/math/fsetexcptflg.c b/math/fsetexcptflg.c index 8d0f0ff64ba..2953c631242 100644 --- a/math/fsetexcptflg.c +++ b/math/fsetexcptflg.c @@ -1,7 +1,6 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1997-2023 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper , 1997. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -14,9 +13,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + . */ #include #include @@ -24,8 +22,9 @@ int __fesetexceptflag (const fexcept_t *flagp, int excepts) { - /* This always fails. */ - return 1; + /* This always succeeds, as all exceptions are always clear + (including in the saved state) so nothing needs to be done. */ + return 0; } #if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2) strong_alias (__fesetexceptflag, __old_fesetexceptflag) @@ -34,4 +33,3 @@ compat_symbol (libm, __old_fesetexceptflag, fesetexceptflag, GLIBC_2_1); versioned_symbol (libm, __fesetexceptflag, fesetexceptflag, GLIBC_2_2); stub_warning (fesetexceptflag) -#include