1
0
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:
Florian Weimer
2016-04-14 12:53:03 +02:00
parent b1b8f5d89d
commit 186fe877f3
2 changed files with 9 additions and 0 deletions

View File

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