mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
Update.
* sysdeps/mips/fpu/fgetexcptflg.c: Fix last patch to use #if. * sysdeps/mips/fpu/fegetenv.c: Likewise. * sysdeps/mips/fpu/feupdateenv.c: Likewise. * sysdeps/mips/fpu/fclrexcpt.c: Likewise. * sysdeps/mips/fpu/fesetenv.c: Likewise.
This commit is contained in:
parent
88fdf42fbb
commit
36d043300f
@ -1,5 +1,11 @@
|
||||
2000-03-31 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* sysdeps/mips/fpu/fgetexcptflg.c: Fix last patch to use #if.
|
||||
* sysdeps/mips/fpu/fegetenv.c: Likewise.
|
||||
* sysdeps/mips/fpu/feupdateenv.c: Likewise.
|
||||
* sysdeps/mips/fpu/fclrexcpt.c: Likewise.
|
||||
* sysdeps/mips/fpu/fesetenv.c: Likewise.
|
||||
|
||||
* sysdeps/generic/ldsodefs.h: DT_INIT_ARRAY is not relocated
|
||||
anymore, update comment.
|
||||
|
||||
|
@ -42,7 +42,7 @@ __feclearexcept (int excepts)
|
||||
/* Success. */
|
||||
return 0;
|
||||
}
|
||||
#ifdef SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
strong_alias (__feclearexcept, __old_feclearexcept)
|
||||
compat_symbol (libm, __old_feclearexcept, feclearexcept, GLIBC_2_1);
|
||||
#endif
|
||||
|
@ -30,7 +30,7 @@ __fegetenv (fenv_t *envp)
|
||||
/* Success. */
|
||||
return 0;
|
||||
}
|
||||
#ifdef SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
strong_alias (__fegetenv, __old_fegetenv)
|
||||
compat_symbol (libm, __old_fegetenv, fegetenv, GLIBC_2_1);
|
||||
#endif
|
||||
|
@ -33,7 +33,7 @@ __fesetenv (const fenv_t *envp)
|
||||
/* Success. */
|
||||
return 0;
|
||||
}
|
||||
#ifdef SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
strong_alias (__fesetenv, __old_fesetenv)
|
||||
compat_symbol (libm, __old_fesetenv, fesetenv, GLIBC_2_1);
|
||||
#endif
|
||||
|
@ -42,7 +42,7 @@ __feupdateenv (const fenv_t *envp)
|
||||
/* Success. */
|
||||
return 0;
|
||||
}
|
||||
#ifdef SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
strong_alias (__feupdateenv, __old_feupdateenv)
|
||||
compat_symbol (libm, __old_feupdateenv, feupdateenv, GLIBC_2_1);
|
||||
#endif
|
||||
|
@ -35,7 +35,7 @@ __fegetexceptflag (fexcept_t *flagp, int excepts)
|
||||
/* Success. */
|
||||
return 0;
|
||||
}
|
||||
#ifdef SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
strong_alias (__fegetexceptflag, __old_fegetexceptflag)
|
||||
compat_symbol (libm, __old_fegetexceptflag, fegetexceptflag, GLIBC_2_1);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user