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.
This commit is contained in:
Andreas Jaeger 2000-03-31 11:11:10 +00:00
parent 73a35fc451
commit b1212cdb2f
5 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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