[hurd,commited] hurd: fix overriding rtld's __sbrk with the real implementation

Message ID 20170903122109.17818-1-samuel.thibault@ens-lyon.org
State Committed, archived
Headers

Commit Message

Samuel Thibault Sept. 3, 2017, 12:21 p.m. UTC
  * sysdeps/mach/hurd/dl-sysdep.c (__sbrk): Add weak_function
	qualifier.
---
 sysdeps/mach/hurd/dl-sysdep.c | 1 +
 1 file changed, 1 insertion(+)
  

Patch

diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c
index dec00f35f0..fd2f3d52cb 100644
--- a/sysdeps/mach/hurd/dl-sysdep.c
+++ b/sysdeps/mach/hurd/dl-sysdep.c
@@ -594,6 +594,7 @@  __getcwd (char *buf, size_t size)
 /* This is used by dl-tunables.c to strdup strings.  We can just make this a
    mere allocation.  */
 void *
+weak_function
 __sbrk (intptr_t increment)
 {
   vm_address_t addr;