diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-14 16:39:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-14 16:39:34 +0000 |
commit | e26dd47ff77ef693b380dc8cf8ddf46d5ea23421 (patch) | |
tree | ea871a40b604f99ef2ed54addfb6bb99ab2243c4 /sysdeps/sh/sh4/fpu/fraiseexcpt.c | |
parent | 181a5bf3c2169fbbdebdb3e4058d28bfa935c184 (diff) | |
download | glibc-e26dd47ff77ef693b380dc8cf8ddf46d5ea23421.tar.gz glibc-e26dd47ff77ef693b380dc8cf8ddf46d5ea23421.tar.xz glibc-e26dd47ff77ef693b380dc8cf8ddf46d5ea23421.zip |
Update.
2000-06-14 Kazumoto Kojima <kkojima@rr.iij4u.or.jp> * sysdeps/sh/sh4/fpu/fclrexcpt.c: Remove definitions for backward compatibility. * sysdeps/sh/sh4/fpu/fegetenv.c: Likewise. * sysdeps/sh/sh4/fpu/fesetenv.c: Likewise. * sysdeps/sh/sh4/fpu/fraiseexcpt.c: Likewise. * sysdeps/sh/sh4/fpu/fsetexcptflg.c: Likewise. 2000-06-14 Jakub Jelinek <jakub@redhat.com> * include/libc-symbols.h (link_warning): If HAVE_SECTION_QUOTES is defined, terminate quotes and read them after the comment char. * configure.in (HAVE_SECTION_QUOTES): Test whether __attribute__((section ("x"))) puts quotes around x or not. * config.h.in (HAVE_SECTION_QUOTES): Add. * configure: Rebuilt.
Diffstat (limited to 'sysdeps/sh/sh4/fpu/fraiseexcpt.c')
-rw-r--r-- | sysdeps/sh/sh4/fpu/fraiseexcpt.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sysdeps/sh/sh4/fpu/fraiseexcpt.c b/sysdeps/sh/sh4/fpu/fraiseexcpt.c index 31d8d92dfb..2006cb99e3 100644 --- a/sysdeps/sh/sh4/fpu/fraiseexcpt.c +++ b/sysdeps/sh/sh4/fpu/fraiseexcpt.c @@ -22,7 +22,7 @@ #include <math.h> int -__feraiseexcept (int excepts) +feraiseexcept (int excepts) { /* Raise exceptions represented by EXPECTS. */ fexcept_t temp; @@ -33,6 +33,3 @@ __feraiseexcept (int excepts) return 0; } -strong_alias (__feraiseexcept, __old_feraiseexcept) -symbol_version (__old_feraiseexcept, feraiseexcept, GLIBC_2.1); -default_symbol_version (__feraiseexcept, feraiseexcept, GLIBC_2.2); |