mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
malloc: Add missing internal_function attributes on function definitions
Fixes build on i386 after commit 29d794863c
.
This commit is contained in:
@ -136,6 +136,7 @@ int __malloc_initialized = -1;
|
||||
subsystem. */
|
||||
|
||||
void
|
||||
internal_function
|
||||
__malloc_fork_lock_parent (void)
|
||||
{
|
||||
if (__malloc_initialized < 1)
|
||||
@ -156,6 +157,7 @@ __malloc_fork_lock_parent (void)
|
||||
}
|
||||
|
||||
void
|
||||
internal_function
|
||||
__malloc_fork_unlock_parent (void)
|
||||
{
|
||||
if (__malloc_initialized < 1)
|
||||
@ -172,6 +174,7 @@ __malloc_fork_unlock_parent (void)
|
||||
}
|
||||
|
||||
void
|
||||
internal_function
|
||||
__malloc_fork_unlock_child (void)
|
||||
{
|
||||
if (__malloc_initialized < 1)
|
||||
|
Reference in New Issue
Block a user