]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/fedisblxcpt.c
Fix all the remaining misspellings -- BZ 25337
[thirdparty/glibc.git] / math / fedisblxcpt.c
index e1e9065aac7676e9781088b2c5d821af31d35de9..10107894bd618f1484e9f93097c20ea8c06d2aa1 100644 (file)
@@ -1,7 +1,6 @@
 /* Disable floating-point exceptions.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright (C) 1999-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
-   Contributed by Andreas Jaeger <aj@suse.de>, 1999.
 
    The GNU C Library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    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
+   <https://www.gnu.org/licenses/>.  */
 
 #include <fenv.h>
 
 int
 fedisableexcept (int excepts)
 {
-  /* Signal failure.  */
-  return -1;
+  /* All exception traps are disabled.  */
+  return 0;
 }
 stub_warning (fedisableexcept)
-#include <stub-tag.h>