diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-01-25 17:10:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-01-25 17:10:56 +0000 |
commit | 8aaf53ee7e743ad6466c1b4b135554c41487cfb7 (patch) | |
tree | e3ecd27087bf4b3d91bb85ac570670e00d068325 /elf/dl-minimal.c | |
parent | 7fbc8784bdd8fa234e8c1fd10bb71e057d54072e (diff) | |
download | glibc-8aaf53ee7e743ad6466c1b4b135554c41487cfb7.tar glibc-8aaf53ee7e743ad6466c1b4b135554c41487cfb7.tar.gz glibc-8aaf53ee7e743ad6466c1b4b135554c41487cfb7.tar.bz2 glibc-8aaf53ee7e743ad6466c1b4b135554c41487cfb7.zip |
* elf/dl-minimal.c: Undefine _itoa first.
Diffstat (limited to 'elf/dl-minimal.c')
-rw-r--r-- | elf/dl-minimal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/dl-minimal.c b/elf/dl-minimal.c index 8e78709b5a..45524088e9 100644 --- a/elf/dl-minimal.c +++ b/elf/dl-minimal.c @@ -1,5 +1,5 @@ /* Minimal replacements for basic facilities used in the dynamic linker. - Copyright (C) 1995-1998,2000-2002,2004,2005,2006 + Copyright (C) 1995-1998,2000-2002,2004-2006,2007 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -283,6 +283,7 @@ __strtoul_internal (const char *nptr, char **endptr, int base, int group) } +#undef _itoa /* We always use _itoa instead of _itoa_word in ld.so since the former also has to be present and it is never about speed when these functions are used. */ |