summaryrefslogtreecommitdiff
path: root/elf/dl-minimal.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-02-06 01:14:01 +0000
committerUlrich Drepper <drepper@redhat.com>2002-02-06 01:14:01 +0000
commit37beecf77ca265266deabc0244819ab3f14adaa7 (patch)
tree48320a2eca5650b0a73053b46d42aaee01eae5cd /elf/dl-minimal.c
parentec70c011557d0964dfc528d2d326d75526aec123 (diff)
Update.
* elf/dl-minimal.c: Define _itoa_lower_digits. * elf/dynamic-link.h (elf_get_dynamic_info): ld.so can have DT_FLAGS set.
Diffstat (limited to 'elf/dl-minimal.c')
-rw-r--r--elf/dl-minimal.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/elf/dl-minimal.c b/elf/dl-minimal.c
index cd899bfd74..c65151cb56 100644
--- a/elf/dl-minimal.c
+++ b/elf/dl-minimal.c
@@ -334,3 +334,8 @@ __strsep (char **stringp, const char *delim)
}
weak_alias (__strsep, strsep)
strong_alias (__strsep, __strsep_g)
+
+
+/* The '_itoa_lower_digits' variable in libc.so is able to handle bases
+ up to 36. We don't need this here. */
+const char _itoa_lower_digits[16] = "0123456789abcdef";