about summary refs log tree commit diff
path: root/elf/dl-misc.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-31 16:59:37 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-31 16:59:37 +0200
commit17e00cc69eac2ec10ac69a3f85db0dffc9d73845 (patch)
tree191b439f8d7fd543620e503117dea86e0e37ac68 /elf/dl-misc.c
parent8d2f9410d5f93e0ca15c9efe48a97d04726152c2 (diff)
downloadglibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.gz
glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.xz
glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.zip
elf: Remove internal_function attribute
Diffstat (limited to 'elf/dl-misc.c')
-rw-r--r--elf/dl-misc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/elf/dl-misc.c b/elf/dl-misc.c
index c469b5a365..c1955dda30 100644
--- a/elf/dl-misc.c
+++ b/elf/dl-misc.c
@@ -40,7 +40,6 @@
    is returned.  */
 
 void *
-internal_function
 _dl_sysdep_read_whole_file (const char *file, size_t *sizep, int prot)
 {
   void *result = MAP_FAILED;
@@ -279,7 +278,6 @@ _dl_dprintf (int fd, const char *fmt, ...)
 
 /* Test whether given NAME matches any of the names of the given object.  */
 int
-internal_function
 _dl_name_match_p (const char *name, const struct link_map *map)
 {
   if (strcmp (name, map->l_name) == 0)
@@ -298,7 +296,6 @@ _dl_name_match_p (const char *name, const struct link_map *map)
 
 
 unsigned long int
-internal_function
 _dl_higher_prime_number (unsigned long int n)
 {
   /* These are primes that are near, but slightly smaller than, a
@@ -366,7 +363,6 @@ _dl_higher_prime_number (unsigned long int n)
    called before errno may have been set up.  */
 
 uint64_t
-internal_function
 _dl_strtoul (const char *nptr, char **endptr)
 {
   uint64_t result = 0;