aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic/fclrexcpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/fclrexcpt.c')
-rw-r--r--sysdeps/generic/fclrexcpt.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/sysdeps/generic/fclrexcpt.c b/sysdeps/generic/fclrexcpt.c
index c760e54a3e..d5b157ecac 100644
--- a/sysdeps/generic/fclrexcpt.c
+++ b/sysdeps/generic/fclrexcpt.c
@@ -1,5 +1,5 @@
/* Clear given exceptions in current floating-point environment.
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -20,9 +20,15 @@
#include <fenv.h>
-void
-feclearexcept (int excepts)
+int
+__feclearexcept (int excepts)
{
+ /* This always fails. */
+ return 1;
}
+strong_alias (__feclearexcept, __old_feclearexcept)
+symbol_version (__old_feclearexcept, feclearexcept, GLIBC_2.1);
+default_symbol_version (__feclearexcept, feclearexcept, GLIBC_2.1.3);
+
stub_warning (feclearexcept)
#include <stub-tag.h>