1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

misc: Remove internal_function function attribute

This commit is contained in:
Florian Weimer
2017-08-31 15:56:45 +02:00
parent 75b3047eac
commit ab5bf7cf76
4 changed files with 9 additions and 8 deletions

View File

@ -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)