about summary refs log tree commit diff
path: root/elf
diff options
context:
space:
mode:
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-minimal.c2
-rw-r--r--elf/dl-reloc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-minimal.c b/elf/dl-minimal.c
index 275ad86fe0..abc829b53a 100644
--- a/elf/dl-minimal.c
+++ b/elf/dl-minimal.c
@@ -290,7 +290,7 @@ _itoa (value, buflim, base, upper_case)
      unsigned int base;
      int upper_case;
 {
-  extern const char _itoa_lower_digits[];
+  extern const char _itoa_lower_digits[] attribute_hidden;
 
   assert (! upper_case);
 
diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c
index 9e3901470c..29f302a25a 100644
--- a/elf/dl-reloc.c
+++ b/elf/dl-reloc.c
@@ -210,7 +210,7 @@ void
 internal_function
 _dl_reloc_bad_type (struct link_map *map, unsigned int type, int plt)
 {
-  extern const char _itoa_lower_digits[];
+  extern const char _itoa_lower_digits[] attribute_hidden;
 #define DIGIT(b)	_itoa_lower_digits[(b) & 0xf];
 
   /* XXX We cannot translate these messages.  */