From 0c71122c0cee483a4e6abcdbe78a1595eefe86e2 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 31 Aug 2017 15:56:21 +0200 Subject: malloc: Remove the internal_function attribute --- malloc/malloc-internal.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'malloc/malloc-internal.h') diff --git a/malloc/malloc-internal.h b/malloc/malloc-internal.h index 6a62717e69..a9c9c6af7f 100644 --- a/malloc/malloc-internal.h +++ b/malloc/malloc-internal.h @@ -63,13 +63,13 @@ /* Called in the parent process before a fork. */ -void __malloc_fork_lock_parent (void) internal_function attribute_hidden; +void __malloc_fork_lock_parent (void) attribute_hidden; /* Called in the parent process after a fork. */ -void __malloc_fork_unlock_parent (void) internal_function attribute_hidden; +void __malloc_fork_unlock_parent (void) attribute_hidden; /* Called in the child process after a fork. */ -void __malloc_fork_unlock_child (void) internal_function attribute_hidden; +void __malloc_fork_unlock_child (void) attribute_hidden; /* Set *RESULT to LEFT * RIGHT. Return true if the multiplication overflowed. */ -- cgit 1.4.1