summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-06-20 17:34:37 +0000
committerMiles Bader <miles@gnu.org>1996-06-20 17:34:37 +0000
commitae6095ca6f1c82a58e8dd880a8d237012e283075 (patch)
treeb0d90fdaddcfa1859880d0ecc95fb27b14bdce34
parentff2ac34c1fbd47d2656f18f01b5b752f590b5e02 (diff)
(___brk_addr): Now a variable, initialized to 0, instead of a weak link to _hurd_brk.
-rw-r--r--sysdeps/mach/hurd/brk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/brk.c b/sysdeps/mach/hurd/brk.c
index b0cef8a42b..73a339961c 100644
--- a/sysdeps/mach/hurd/brk.c
+++ b/sysdeps/mach/hurd/brk.c
@@ -38,7 +38,7 @@ vm_address_t _hurd_brk;
/* This name is used by the Linux crtbeginS.o for reasons you don't even
want to think about it. It's just easier to provide some definition for
it than even to explain the braindamage involved. */
-weak_alias (_hurd_brk, ___brk_addr)
+vm_address_t ___brk_addr = 0;
struct mutex _hurd_brk_lock;