diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:56:21 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:59:06 +0200 |
commit | 0c71122c0cee483a4e6abcdbe78a1595eefe86e2 (patch) | |
tree | f31e337cfc0c1c35dc1b4658ceb54894d5564047 /malloc/malloc-internal.h | |
parent | ca4ec8039628cac6600541472b068be7535d4bb4 (diff) | |
download | glibc-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.h | 6 |
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. */ |