diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-08-23 19:16:29 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-08-23 19:16:29 +0000 |
commit | 3add412f6d22b826b7345fbc481bb874035cb0ed (patch) | |
tree | f4e2f0d379a6f4349daece9a385908ed72451767 /libc/sysdeps/linux/x86_64 | |
parent | 7fb2478092d40e5237115f409968a9762734692b (diff) |
fixes from psm: hide internal brk symbols
Diffstat (limited to 'libc/sysdeps/linux/x86_64')
-rw-r--r-- | libc/sysdeps/linux/x86_64/brk.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/x86_64/brk.c b/libc/sysdeps/linux/x86_64/brk.c index 09d911066..22f006d7e 100644 --- a/libc/sysdeps/linux/x86_64/brk.c +++ b/libc/sysdeps/linux/x86_64/brk.c @@ -21,11 +21,10 @@ #include <unistd.h> #include <sys/syscall.h> -libc_hidden_proto(brk) - /* This must be initialized data because commons can't have aliases. */ -void *__curbrk = 0; +void *__curbrk attribute_hidden = 0; +libc_hidden_proto(brk) int brk (void *addr) { void *__unbounded newbrk; |