about summary refs log tree commit diff
path: root/malloc/malloc-internal.h
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-31 15:56:21 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-31 15:59:06 +0200
commit0c71122c0cee483a4e6abcdbe78a1595eefe86e2 (patch)
treef31e337cfc0c1c35dc1b4658ceb54894d5564047 /malloc/malloc-internal.h
parentca4ec8039628cac6600541472b068be7535d4bb4 (diff)
downloadglibc-0c71122c0cee483a4e6abcdbe78a1595eefe86e2.tar.gz
glibc-0c71122c0cee483a4e6abcdbe78a1595eefe86e2.tar.xz
glibc-0c71122c0cee483a4e6abcdbe78a1595eefe86e2.zip
malloc: Remove the internal_function attribute
Diffstat (limited to 'malloc/malloc-internal.h')
-rw-r--r--malloc/malloc-internal.h6
1 files changed, 3 insertions, 3 deletions
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.  */