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/vax | |
parent | 7fb2478092d40e5237115f409968a9762734692b (diff) |
fixes from psm: hide internal brk symbols
Diffstat (limited to 'libc/sysdeps/linux/vax')
-rw-r--r-- | libc/sysdeps/linux/vax/brk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/vax/brk.c b/libc/sysdeps/linux/vax/brk.c index 5b23f6075..47fd3e529 100644 --- a/libc/sysdeps/linux/vax/brk.c +++ b/libc/sysdeps/linux/vax/brk.c @@ -22,7 +22,7 @@ #include <sys/syscall.h> /* This must be initialized data because commons can't have aliases. */ -void *__curbrk = NULL; +void *__curbrk attribute_hidden = NULL; libc_hidden_proto(brk) int |