From 3c2175b12b8a6cd2362a8c5bd8e2e31d54a8b4da Mon Sep 17 00:00:00 2001
From: "Peter S. Mazinger" <ps.m@gmx.net>
Date: Wed, 14 Dec 2005 13:48:23 +0000
Subject: Do hidden brk, hide _brk as well for some archs, convert users of brk

---
 libc/sysdeps/linux/i386/brk.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'libc/sysdeps/linux/i386')

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)
-- 
cgit v1.2.3