aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/tile
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 /sysdeps/tile
parent8d2f9410d5f93e0ca15c9efe48a97d04726152c2 (diff)
downloadglibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.zip
glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.gz
glibc-17e00cc69eac2ec10ac69a3f85db0dffc9d73845.tar.bz2
elf: Remove internal_function attribute
Diffstat (limited to 'sysdeps/tile')
-rw-r--r--sysdeps/tile/dl-lookupcfg.h2
-rw-r--r--sysdeps/tile/dl-machine.h2
-rw-r--r--sysdeps/tile/dl-runtime.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/tile/dl-lookupcfg.h b/sysdeps/tile/dl-lookupcfg.h
index 18a816e..c829823 100644
--- a/sysdeps/tile/dl-lookupcfg.h
+++ b/sysdeps/tile/dl-lookupcfg.h
@@ -22,6 +22,6 @@
struct link_map;
-void internal_function _dl_unmap (struct link_map *map);
+void _dl_unmap (struct link_map *map);
#define DL_UNMAP(map) _dl_unmap (map)
diff --git a/sysdeps/tile/dl-machine.h b/sysdeps/tile/dl-machine.h
index ae92673..f7af7c3 100644
--- a/sysdeps/tile/dl-machine.h
+++ b/sysdeps/tile/dl-machine.h
@@ -255,7 +255,7 @@ elf_machine_plt_value (struct link_map *map, const ElfW(Rela) *reloc,
}
/* Support notifying the simulator about new objects. */
-void internal_function _dl_after_load (struct link_map *l);
+void _dl_after_load (struct link_map *l);
#define DL_AFTER_LOAD _dl_after_load
/* Names of the architecture-specific auditing callback functions. */
diff --git a/sysdeps/tile/dl-runtime.c b/sysdeps/tile/dl-runtime.c
index 3aced41..c58e619 100644
--- a/sysdeps/tile/dl-runtime.c
+++ b/sysdeps/tile/dl-runtime.c
@@ -94,7 +94,7 @@ dl_realpath (const char *name, char *rpath)
}
/* Support notifying the simulator about new objects. */
-void internal_function
+void
_dl_after_load (struct link_map *l)
{
int shift;
@@ -151,7 +151,7 @@ sim_dlclose (ElfW(Addr) map_start)
#undef DLPUTC
}
-void internal_function
+void
_dl_unmap (struct link_map *map)
{
sim_dlclose (map->l_map_start);