diff options
author | Jakub Jelinek <jakub@redhat.com> | 2010-10-11 09:27:05 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2010-10-11 09:27:05 -0400 |
commit | 9ff8d36f27aaf390fd074976cd2e867ba41f2588 (patch) | |
tree | 694d6d7482b202d35b90d9e958d322f4c4a1b83b /math/feupdateenv.c | |
parent | c579b202990c48710e133b58b44ada32d0a7d458 (diff) | |
download | glibc-9ff8d36f27aaf390fd074976cd2e867ba41f2588.tar.gz glibc-9ff8d36f27aaf390fd074976cd2e867ba41f2588.tar.xz glibc-9ff8d36f27aaf390fd074976cd2e867ba41f2588.zip |
Correct implementation of fmaf.
Diffstat (limited to 'math/feupdateenv.c')
-rw-r--r-- | math/feupdateenv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/feupdateenv.c b/math/feupdateenv.c index 3e6aed4fdf..dd7a1afdb5 100644 --- a/math/feupdateenv.c +++ b/math/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1997, 1999, 2000, 2010 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -31,6 +31,7 @@ __feupdateenv (const fenv_t *envp) strong_alias (__feupdateenv, __old_feupdateenv) compat_symbol (libm, __old_feupdateenv, feupdateenv, GLIBC_2_1); #endif +libm_hidden_ver (__feupdateenv, feupdateenv) versioned_symbol (libm, __feupdateenv, feupdateenv, GLIBC_2_2); stub_warning (feupdateenv) |