summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/i386/brk.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/i386/brk.c')
-rw-r--r--libc/sysdeps/linux/i386/brk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/i386/brk.c b/libc/sysdeps/linux/i386/brk.c
index 09c6be7e3..5790e2fca 100644
--- a/libc/sysdeps/linux/i386/brk.c
+++ b/libc/sysdeps/linux/i386/brk.c
@@ -25,8 +25,7 @@
/* This must be initialized data because commons can't have aliases. */
void *__curbrk = 0;
-
-int brk (void *addr)
+int attribute_hidden __brk (void *addr)
{
void *__unbounded newbrk, *__unbounded scratch;
@@ -47,3 +46,4 @@ int brk (void *addr)
return 0;
}
+strong_alias(__brk,brk)