mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
Update.
2000-04-04 Andreas Jaeger <aj@suse.de> * sysdeps/generic/fgetexcptflg.c: Use shlib-compat macros.
This commit is contained in:
parent
736d0841e4
commit
09847c8d0d
@ -1,3 +1,7 @@
|
||||
2000-04-04 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* sysdeps/generic/fgetexcptflg.c: Use shlib-compat macros.
|
||||
|
||||
2000-04-04 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* elf/dl-runtime.c (fixup): Correct handling of symbols marked
|
||||
|
@ -19,6 +19,7 @@
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
#include <fenv.h>
|
||||
#include <shlib-compat.h>
|
||||
|
||||
int
|
||||
__fegetexceptflag (fexcept_t *flagp, int excepts)
|
||||
@ -26,9 +27,11 @@ __fegetexceptflag (fexcept_t *flagp, int excepts)
|
||||
/* This always fails. */
|
||||
return 1;
|
||||
}
|
||||
#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
|
||||
strong_alias (__fegetexceptflag, __old_fegetexceptflag)
|
||||
symbol_version (__old_fegetexceptflag, fegetexceptflag, GLIBC_2.1);
|
||||
default_symbol_version (__fegetexceptflag, fegetexceptflag, GLIBC_2.2);
|
||||
compat_symbol (libm, __old_fegetexceptflag, fegetexceptflag, GLIBC_2_1);
|
||||
#endif
|
||||
versioned_symbol (libm, __fegetexceptflag, fegetexceptflag, GLIBC_2_2);
|
||||
|
||||
stub_warning (fegetexceptflag)
|
||||
#include <stub-tag.h>
|
||||
|
Loading…
Reference in New Issue
Block a user