about summary refs log tree commit diff
path: root/misc/tsearch.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-31 15:56:45 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-31 15:59:06 +0200
commitab5bf7cf7628dda64701e47b149575f0f7c896bf (patch)
tree17d2a754a097ab9e6bf714ff06948522b40c4c3e /misc/tsearch.c
parent75b3047eac76779f4e7902a9f47a6410bfdcc32f (diff)
downloadglibc-ab5bf7cf7628dda64701e47b149575f0f7c896bf.tar.gz
glibc-ab5bf7cf7628dda64701e47b149575f0f7c896bf.tar.xz
glibc-ab5bf7cf7628dda64701e47b149575f0f7c896bf.zip
misc: Remove internal_function function attribute
Diffstat (limited to 'misc/tsearch.c')
-rw-r--r--misc/tsearch.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/misc/tsearch.c b/misc/tsearch.c
index 5e2e7986d3..aef9c7c1ee 100644
--- a/misc/tsearch.c
+++ b/misc/tsearch.c
@@ -684,7 +684,6 @@ weak_alias (__tdelete, tdelete)
    ROOT is the root of the tree to be walked, ACTION the function to be
    called at each node.  LEVEL is the level of ROOT in the whole tree.  */
 static void
-internal_function
 trecurse (const void *vroot, __action_fn_t action, int level)
 {
   const_node root = (const_node) vroot;
@@ -725,7 +724,6 @@ weak_alias (__twalk, twalk)
 /* The standardized functions miss an important functionality: the
    tree cannot be removed easily.  We provide a function to do this.  */
 static void
-internal_function
 tdestroy_recurse (node root, __free_fn_t freefct)
 {
   if (LEFT(root) != NULL)