From ab5bf7cf7628dda64701e47b149575f0f7c896bf Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 31 Aug 2017 15:56:45 +0200 Subject: misc: Remove internal_function function attribute --- misc/tsearch.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'misc/tsearch.c') diff --git a/misc/tsearch.c b/misc/tsearch.c index 5e2e798..aef9c7c 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) -- cgit v1.1