aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/sh/sh4
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-14 16:39:34 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-14 16:39:34 +0000
commite26dd47ff77ef693b380dc8cf8ddf46d5ea23421 (patch)
treeea871a40b604f99ef2ed54addfb6bb99ab2243c4 /sysdeps/sh/sh4
parent181a5bf3c2169fbbdebdb3e4058d28bfa935c184 (diff)
downloadglibc-e26dd47ff77ef693b380dc8cf8ddf46d5ea23421.tar
glibc-e26dd47ff77ef693b380dc8cf8ddf46d5ea23421.tar.gz
glibc-e26dd47ff77ef693b380dc8cf8ddf46d5ea23421.tar.bz2
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')
-rw-r--r--sysdeps/sh/sh4/fpu/fclrexcpt.c5
-rw-r--r--sysdeps/sh/sh4/fpu/fegetenv.c5
-rw-r--r--sysdeps/sh/sh4/fpu/fesetenv.c5
-rw-r--r--sysdeps/sh/sh4/fpu/fraiseexcpt.c5
-rw-r--r--sysdeps/sh/sh4/fpu/fsetexcptflg.c5
5 files changed, 5 insertions, 20 deletions
diff --git a/sysdeps/sh/sh4/fpu/fclrexcpt.c b/sysdeps/sh/sh4/fpu/fclrexcpt.c
index cf77cfe5b3..7e764cff8e 100644
--- a/sysdeps/sh/sh4/fpu/fclrexcpt.c
+++ b/sysdeps/sh/sh4/fpu/fclrexcpt.c
@@ -22,7 +22,7 @@
#include <fpu_control.h>
int
-__feclearexcept (int excepts)
+feclearexcept (int excepts)
{
int cw;
@@ -40,6 +40,3 @@ __feclearexcept (int excepts)
return 0;
}
-strong_alias (__feclearexcept, __old_feclearexcept)
-symbol_version (__old_feclearexcept, feclearexcept, GLIBC_2.1);
-default_symbol_version (__feclearexcept, feclearexcept, GLIBC_2.2);
diff --git a/sysdeps/sh/sh4/fpu/fegetenv.c b/sysdeps/sh/sh4/fpu/fegetenv.c
index 8bd540bd31..11fdfc9316 100644
--- a/sysdeps/sh/sh4/fpu/fegetenv.c
+++ b/sysdeps/sh/sh4/fpu/fegetenv.c
@@ -21,7 +21,7 @@
#include <fpu_control.h>
int
-__fegetenv (fenv_t *envp)
+fegetenv (fenv_t *envp)
{
unsigned long int temp;
_FPU_GETCW (temp);
@@ -29,6 +29,3 @@ __fegetenv (fenv_t *envp)
return 0;
}
-strong_alias (__fegetenv, __old_fegetenv)
-symbol_version (__old_fegetenv, fegetenv, GLIBC_2.1);
-default_symbol_version (__fegetenv, fegetenv, GLIBC_2.2);
diff --git a/sysdeps/sh/sh4/fpu/fesetenv.c b/sysdeps/sh/sh4/fpu/fesetenv.c
index 8424782666..445bc77a94 100644
--- a/sysdeps/sh/sh4/fpu/fesetenv.c
+++ b/sysdeps/sh/sh4/fpu/fesetenv.c
@@ -21,7 +21,7 @@
#include <fpu_control.h>
int
-__fesetenv (const fenv_t *envp)
+fesetenv (const fenv_t *envp)
{
if (envp == FE_DFL_ENV)
_FPU_SETCW (_FPU_DEFAULT);
@@ -32,6 +32,3 @@ __fesetenv (const fenv_t *envp)
}
return 0;
}
-strong_alias (__fesetenv, __old_fesetenv)
-symbol_version (__old_fesetenv, fesetenv, GLIBC_2.1);
-default_symbol_version (__fesetenv, fesetenv, GLIBC_2.2);
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);
diff --git a/sysdeps/sh/sh4/fpu/fsetexcptflg.c b/sysdeps/sh/sh4/fpu/fsetexcptflg.c
index b88077ac82..595631fb63 100644
--- a/sysdeps/sh/sh4/fpu/fsetexcptflg.c
+++ b/sysdeps/sh/sh4/fpu/fsetexcptflg.c
@@ -22,7 +22,7 @@
#include <fpu_control.h>
int
-__fesetexceptflag (const fexcept_t *flagp, int excepts)
+fesetexceptflag (const fexcept_t *flagp, int excepts)
{
fexcept_t temp;
@@ -38,6 +38,3 @@ __fesetexceptflag (const fexcept_t *flagp, int excepts)
return 0;
}
-strong_alias (__fesetexceptflag, __old_fesetexceptflag)
-symbol_version (__old_fesetexceptflag, fesetexceptflag, GLIBC_2.1);
-default_symbol_version (__fesetexceptflag, fesetexceptflag, GLIBC_2.2);