diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-11-04 23:45:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-11-04 23:45:45 +0000 |
commit | ff8ac38322d991429a64dd127173af99dee3d9ca (patch) | |
tree | 857c258a5ae7292290a9ebb8fefb531a21d9d169 /elf | |
parent | 00c1176b65cc2961b094c3dd78dd53072eb61fe9 (diff) | |
download | glibc-ff8ac38322d991429a64dd127173af99dee3d9ca.zip glibc-ff8ac38322d991429a64dd127173af99dee3d9ca.tar.gz glibc-ff8ac38322d991429a64dd127173af99dee3d9ca.tar.bz2 |
Update.
1998-11-04 Ulrich Drepper <drepper@cygnus.com>
* misc/efgcvt_r.c (fcvt_r): Remove code which tries to use libm
functions. Reduce error in computing normalized value by multiplying
factor in loop and compute result in one step.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dlopenold.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/elf/dlopenold.c b/elf/dlopenold.c index a9659ae..49fce7a 100644 --- a/elf/dlopenold.c +++ b/elf/dlopenold.c @@ -17,7 +17,9 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifdef PIC +/* This file is for compatibility with glibc 2.0. Compile it only if + versioning is used. */ +#if defined PIC && DO_VERSIONING #include <dlfcn.h> #include <stddef.h> |