mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03: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:
@ -1,5 +1,11 @@
|
|||||||
2000-03-31 Andreas Jaeger <aj@suse.de>
|
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
|
* sysdeps/generic/ldsodefs.h: DT_INIT_ARRAY is not relocated
|
||||||
anymore, update comment.
|
anymore, update comment.
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ __feclearexcept (int excepts)
|
|||||||
/* Success. */
|
/* Success. */
|
||||||
return 0;
|
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)
|
strong_alias (__feclearexcept, __old_feclearexcept)
|
||||||
compat_symbol (libm, __old_feclearexcept, feclearexcept, GLIBC_2_1);
|
compat_symbol (libm, __old_feclearexcept, feclearexcept, GLIBC_2_1);
|
||||||
#endif
|
#endif
|
||||||
|
@ -30,7 +30,7 @@ __fegetenv (fenv_t *envp)
|
|||||||
/* Success. */
|
/* Success. */
|
||||||
return 0;
|
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)
|
strong_alias (__fegetenv, __old_fegetenv)
|
||||||
compat_symbol (libm, __old_fegetenv, fegetenv, GLIBC_2_1);
|
compat_symbol (libm, __old_fegetenv, fegetenv, GLIBC_2_1);
|
||||||
#endif
|
#endif
|
||||||
|
@ -33,7 +33,7 @@ __fesetenv (const fenv_t *envp)
|
|||||||
/* Success. */
|
/* Success. */
|
||||||
return 0;
|
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)
|
strong_alias (__fesetenv, __old_fesetenv)
|
||||||
compat_symbol (libm, __old_fesetenv, fesetenv, GLIBC_2_1);
|
compat_symbol (libm, __old_fesetenv, fesetenv, GLIBC_2_1);
|
||||||
#endif
|
#endif
|
||||||
|
@ -42,7 +42,7 @@ __feupdateenv (const fenv_t *envp)
|
|||||||
/* Success. */
|
/* Success. */
|
||||||
return 0;
|
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)
|
strong_alias (__feupdateenv, __old_feupdateenv)
|
||||||
compat_symbol (libm, __old_feupdateenv, feupdateenv, GLIBC_2_1);
|
compat_symbol (libm, __old_feupdateenv, feupdateenv, GLIBC_2_1);
|
||||||
#endif
|
#endif
|
||||||
|
@ -35,7 +35,7 @@ __fegetexceptflag (fexcept_t *flagp, int excepts)
|
|||||||
/* Success. */
|
/* Success. */
|
||||||
return 0;
|
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)
|
strong_alias (__fegetexceptflag, __old_fegetexceptflag)
|
||||||
compat_symbol (libm, __old_fegetexceptflag, fegetexceptflag, GLIBC_2_1);
|
compat_symbol (libm, __old_fegetexceptflag, fegetexceptflag, GLIBC_2_1);
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user