diff options
Diffstat (limited to 'libc/sysdeps/linux/x86_64/brk.c')
-rw-r--r-- | libc/sysdeps/linux/x86_64/brk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/x86_64/brk.c b/libc/sysdeps/linux/x86_64/brk.c index 303b5c0de..a00e2361e 100644 --- a/libc/sysdeps/linux/x86_64/brk.c +++ b/libc/sysdeps/linux/x86_64/brk.c @@ -24,7 +24,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; @@ -42,3 +42,4 @@ int brk (void *addr) return 0; } +strong_alias(__brk,brk) |