diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-05-29 23:55:13 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-06-01 01:25:41 +0200 |
commit | 5be8418cb0856aff4de059802570eb12d558c91f (patch) | |
tree | 687b7a52c60eeeb66b8e25668953cd7e5b2919c0 /elf/dl-reloc.c | |
parent | 12e5e0f35770127bf8ab732b0c625821c4ab96b7 (diff) | |
download | glibc-5be8418cb0856aff4de059802570eb12d558c91f.tar glibc-5be8418cb0856aff4de059802570eb12d558c91f.tar.gz glibc-5be8418cb0856aff4de059802570eb12d558c91f.tar.bz2 glibc-5be8418cb0856aff4de059802570eb12d558c91f.zip |
Remove use of INTDEF/INTUSE in stdio-common
Diffstat (limited to 'elf/dl-reloc.c')
-rw-r--r-- | elf/dl-reloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index 97d2f6f779..e6968a4456 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -1,5 +1,5 @@ /* Relocate a shared object and resolve its references to other loaded objects. - Copyright (C) 1995-2006, 2008-2010, 2011 Free Software Foundation, Inc. + Copyright (C) 1995-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -24,6 +24,7 @@ #include <sys/mman.h> #include <sys/param.h> #include <sys/types.h> +#include <_itoa.h> #include "dynamic-link.h" /* Statistics function. */ @@ -338,8 +339,7 @@ void internal_function __attribute_noinline__ _dl_reloc_bad_type (struct link_map *map, unsigned int type, int plt) { - extern const char INTUSE(_itoa_lower_digits)[] attribute_hidden; -#define DIGIT(b) INTUSE(_itoa_lower_digits)[(b) & 0xf]; +#define DIGIT(b) _itoa_lower_digits[(b) & 0xf]; /* XXX We cannot translate these messages. */ static const char msg[2][32 |